M
Matthew Louden
To display the table with all columns, we can do this:
Dim dt As DataTable = ds.Tables(0)
dgEmployeeInfo.DataSource = dt
dgEmployeeInfo.DataBind()
I want to create check boxes with all the columns, so that users can select
which column (data field) to display. Any ideas??
Dim dt As DataTable = ds.Tables(0)
dgEmployeeInfo.DataSource = dt
dgEmployeeInfo.DataBind()
I want to create check boxes with all the columns, so that users can select
which column (data field) to display. Any ideas??