1
vote
how to convert Gridview to Datatable
The preferable way would be to use data binding. If you manage to get bidirectional data binding to work, your DataTable is updated automatically.
Performance wise, you would probably get b …
0
votes
Can the PostbackUrl be set for a GridView CommandField?
Use a HyperLinkField column in your GridView:
<asp:HyperLinkField AccessibleHeaderText="Edit" DataNavigateUrlFields="ActivityId" DataNavigateUrlFormatString="AcitivtyEdit.aspx?id …
1
vote
Can the PostbackUrl be set for a GridView CommandField?
Leppie is right. The GridView has no PostbackUrl property. However, you can do what you want by using a standard control, which has a PostbackUrl property.
<asp:TemplateField Ac …
2
votes
How do you bind a gridview column to a subclass value?
The data binding mechanism behind ASP.NET GridView supports only one level bindings. (as opposed to its WinForms Binding counterpart that supports multi-level in the case of binding to a DataSet / …
