System.Web.UI.WebControls.TableCell Class
Information   Base Types   Related Resources

Represents a cell in a Table control.

  • Namespace: System.Web.UI.WebControls
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: System.Web.dll

  • System.Web.UI.WebControls.WebControl
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (26)Discussions (472)MembersRotorChanges
    Articles

    Page: 12
    Advanced Checkbox Validation Across n-Pages for the DataGrid Control
    DotNetJunkies
    In this article, Oliver shows how to select up to two records from a datagrid that can then be compared to generate a PDF document on the fly.
    Ask the DotNetJunkies: Performance Impacts of Server Controls
    DotNetJunkies
    If the validation controls or intrinsic controls post the page back to the server, will it not affect the performance of the pages because huge files have to go back and forth from the client to the server?
    Ask the DotNetJunkies: Using a Pop-Up Calendar and a List Control
    DotNetJunkies
    In this tutorial Doug Seven shown you how to use a DataGrid and a pop-up calendar / date picker together.
    ASP.NET Extended DataGrid UI Features
    The Code Project
    The ASP.NET DataGrid Server Control is a versatile control. The control displays data bound information in a HTML table. There are several key UI features that the DataGrid does not have. For instance, many HTML tables that show data in a list, change the color of the row when the mouse hovers over.
    BetterCalendar WebControl
    The Code Project
    A replacement for the System.Web.UI.WebControls.Calendar control.
    Building a Variety of Custom Controls Based on the DataGrid Control
    MSDN
    The DataGrid Web control is by far the most powerful and versatile of all ASP .NET controls. Not only does it have many properties that you can set programmatically, but it lends itself to more advanced forms of customization. In this column, I'll build a few flavors of DataGrid-based Web controls. In doing so, I'll review the major design issues that characterize these controls and answer some of the questions most frequently raised by readers after they tackled the series of DataGrid columns in the March through June 2001 installments of Cutting Edge. In particular, you'll see how to add a custom toolbar to a DataGrid control to accomplish common tasks such as New and Unselect.
    Calendar Function
    The Code Project
    Function that returns a calendar in code-behind at run-time not a web-control but similar
    Data Binding Techniques
    FLWS.com.au
    Recently I've been asked how to use data binding when you need to conditionally display information based on what is being output from the data binding operation. Data binding seems great if all you want to do is display a spreadsheet of information on a page, but what about if you only want to display FieldA if FieldB has a certain value? Or, what about if FieldC needs to display a value that is derived from the Sum of FieldD & FieldE?
    Data Binding Techniques
    FLWS.com.au
    Data binding seems great if all you want to do is display a spreadsheet of information on a page, but what about if you only want to display FieldA if FieldB has a certain value? Or, what about if FieldC needs to display a value that is derived from the Sum of FieldD & Field? In this article I'd like to present one of the ways that I go about solving these issues.
    DataCalendar
    The Code Project
    A data-driven, templated sub-class of the ASP.NET Calendar control
    DataGrid Foreign Event Handling
    DotNetJunkies
    DataGrids seem to be very popular among all ASP.NET developers these days. I've seen whole series of articles and a lot powerful custom controls released for it. I personally think they are great as long as you manage your ViewState size and don't try to think too much outside the box, or grid in this case. Anyhow, one thing that has bothered me is that it isn't easy to wire up events like, OnSelectedItemIndexChange, in template columns containing controls like the RadioButtonList or DropDownList.
    DataList vs. DataGrid in ASP.NET
    MSDN
    This month I want to look at two of the more specialized controls that come with the ASP.NET Framework: the DataList and the DataGrid. Both of these controls are full-featured data-managing tools. In addition to providing a simplified UI programming model for displaying data, ASP.NET includes facilities for binding data sources to these controls so you don't have to write all the code necessary to fish around a database and present your content. This month I'll compare and contrast the DataGrid and DataList controls, starting with DataGrid.
    HOW TO: Retrieve and Display Records from an Access Database Using ASP.NET, ADO.NET, and Visual Basic .NET (Q308278)
    http://www.kbalertz.com/
    This article demonstrates how to programmatically retrieve data from a Microsoft Access database and present the data to the user. The sample in this article uses the
    HOW TO: Retrieve and Display Records from an Access Database Using ASP.NET, ADO.NET, and Visual C# .NET (Q308100)
    http://www.kbalertz.com/
    This article demonstrates how to programmatically retrieve data from a Microsoft Access database and present the data to the user. The sample in this article uses the
    Making an ASP.NET Web Site Accessible
    MSDN
    Extend ASP.NET classes to make them generate ASP.NET code that is fully accessible to people with disabilities.
    Page Tracing/Timing
    LearnASP
    This page demonstrates how a pagecan use tracing to time tasks to the millisecond and place debug data into pages. The nicest part aboutthe tracing presented here is that it can be left in pages and switched on oroff as a group with one page directive.
    Populate Table Control dynamically from Datareader according to format given in an XML file
    The Code Project
    An article on how to use a format given in an XML file to populate a Table control from the records contained in a SQL Data reader.
    Populate Table Control dynamically from DataReader according to format given in an XML file
    The Code Project
    An article on how to use a format given in an XML file to populate a Table control from the records contained in a SQL Data reader
    Running Stored Procedures with ASP.NET
    DotNetJunkies
    In this article, you’ll learn how to extract a list of stored procedures from a database, plus information about the parameters associated with the stored procedure. Finally, you’ll see how to take this information and use it to call a stored procedure on the fly.
    Selecting an Item in a DataList using C#
    ASP Alliance
    In this article, we will look at a technique that allows us to generate a DataGrid (children data) based on a selection in a DropDownList (parent data). Basically, when an item is selected in the DropDownList, the page is posted back and we run a query to fill the DataGrid.
    Selecting Items With The DataGrid And DataList Controls
    DotNetJunkies
    In this article we'll be going over how to enable item selection using both the DataGrid and DataList.
    Separating Datagrid Items
    The Code Project
    How to add a separator row to set off groups of similar data in an ASP.NET Datagrid
    Template Rounded Corner Control
    The Code Project
    Enhance Rounded Corner Control to support template
    The Power of Base Pages
    DotNetJunkies
    You can gain flexibility, maintainability, and power by subclassing System.Web.UI.Page. In this article, you'll learn how to create a class to serve as the base for all of your site Web forms, and then see it in action.
    Understanding Templates in ASP.NET
    MSDN
    Web server controls can be customized by setting properties or by using CSS styles. Some allow you to customize their look through ASP.NET templates. An ASP.NET template is a mix of HTML elements and ASP.NET controls that make up the layout for a particular area of the control. Templates are not the same as styles. Styles primarily refer to CSS stylesheets and affect graphical properties such as colors, font, border style, cell spacing, and so forth. With styles, the control's layout remains unchanged in its structure but can be modified in its appearance. In contrast, templates involve deeper changes that modify some portions of a control's user interface.
    Ad
    Need Dot Net Interview Questions?
    Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
    .Net Projects
    Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
    Free .net Help
    Commission ExamGuru, Inc. and his team for your next bespoke software project
    FogBUGZ
    The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
    Awesome Tools
    If you don't know about these, you're missing out... IT Certification Questions
    IT Interview Questions
    Free Oracle 10g Training
    MCSE Boortcamp
    Cisco Study Guides
    Cheap Study Guides
    Exact Questions
    Dot Net Interview Questions
    Oracle OCP
    Cheap Travel
    Designer Perfumes - Wholesale Prices
    Free Programming Tutorials
     
    ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
     Copyright © ExamGuru, Inc. 2001-2006
    Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification