ASP.NET GridViews are very handy to display data from a database table, view or a select statement that may contain joined tables. By default the gridview provides the fields in the boundfield format. The boundfields are fileds that have fixed GUI type and an associated datafield.
1 |
<asp:BoundField DataField="state" HeaderText="State" SortExpression="state" /> |
Convert a asp:BoundField to a asp:TemplateField In order to […]