Hi friends,
I've one problem.. I'm fetching some data to one datatable say dt.
Now I want to assign it's 1st row 's data to gridviewheader(gridview is with it's 'autogeneratecolumns' property set to true)
Eg: I have datatable dt as follows
datatable columns ---> Name Address RollNo
actual data 1st row---->name address rollno
actual data 2ndrow---->sam address1 1
actual data 3rdrow---->sam1 address2 2 and so on.
As I cannot make changes into sql stored procedure(I dont have DB access), I want to manipulate the datatable structure at front end only
I tried it in Grid's rowdatabound event but it's not possible there.
any help??
Go to the complete details ...