Advanced Data Grid Columns
| Submitted On |
July 24, 2002 |
| Updated on |
July 25, 2007 |
| .NET Framework |
1.x |
| Cost |
$ 0 |
Description
The Advanced DataGrid Columns Assembly contains several totally new columns for the ASP.NET DataGrid control. You do not need to use another control but can use the new columns by just adding the assembly to your bin directory. Of course it's free to use.
Syntax Example
<ASP:DataGrid id="dg" runat="server">
<Columns>
...
<PAL:DropDownBoundColumn
HeaderText="Publisher"
DataField="P_Name"
DataTextField="Name"
DataValueField="ID"/>
<PAL:DetailListColumn
HeaderText="Available Books"
DataRelation="Authors2Books">
<ItemTemplate>
• <%# DataBinder.Eval(Container, "DataItem[Title]") %>
</ItemTemplate>
</PAL:DetailListColumn>
<PAL:MultipleFieldsColumn
HeaderText="Name (Lastname, Firstname)"
DataFields="Firstname, Lastname"
DataFormatString="{1}, {0}"/>
...
</Columns>
</ASP:DataGrid>
Reviews
Submit a review
Eh..
Reviewed by: MattCrawford on Thursday, April 15, 2004
3 Stars
Good if you know c#, but I don't know if you can bind data to it with vb.