How to Dynamically populate Checkbox in Gridview asp.net 2.0
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I need code in C# to populate checkbox in gridview to delete records. Please help. Thank you Saranya
SJSaranya wrote:
populate checkbox in gridview to delete records.
Add a column to the datatable, which you want to assign as a data source to the gridview like the following dataTable1.Columns.Add("Name of My Column for the checkbox",typeof(bool),"0"); assign it as datasource.
kss