hi guys this is how i retrieve data from database and put it to a grid with auto generate column
dim rs as sqldatareader
dim dt as datatable
dt.load(rs)
radgrid1.datasource=dt
radgrid1.databind
so let say my grid come out like this
column1 column2 column3
1 test link1
2 test2 link2
3 test3 link3
my question is how do i make column a link so that i can click on link1 and it takes me to yahoo, link2 takes me to google and so on with the way i retrieve data above. thank you guys.
please help me.
dim rs as sqldatareader
dim dt as datatable
dt.load(rs)
radgrid1.datasource=dt
radgrid1.databind
so let say my grid come out like this
column1 column2 column3
1 test link1
2 test2 link2
3 test3 link3
my question is how do i make column a link so that i can click on link1 and it takes me to yahoo, link2 takes me to google and so on with the way i retrieve data above. thank you guys.
please help me.