ComboBox |
The professional replacement for the classic ASP.NET DropDownList component. |
DataGrid |
The server control to display data in a tabular format with options of choice, sorting and editing entries. |
Include |
The server control to include a HTML files into your ASP.NET pages as Server Side Includes (SSI). |
Menu |
The server control to display both statically and dynamically created menus on your Web pages. |
Rating |
The server control to easily provide feedback on an article, blog item, product description, etc. |
TreeView |
The ASP.NET server control to display hierarchical data in a tree structure. |
|
|
Is there a way to show more than one datafield in a column when using a DataGrid?
Use the Column Template, which combines row cells data. For example, if the table includes first and last names in separate columns, you can combine cell contents to show the names together in one column. Template can include special Active Blocks, instead of which data is inserted.
This template's code combines data from the first name and last name fields:
$FirstName$ $LastName$
The FirstName and LastName are column names.
APNSoft FAQ Manager 1.0 (38) © 2003-2024 APNSoft. All rights reserved. |
|