My doubt is How can we display the data of a particular row into a text box when we click on the edit linkbutton in the datagrid.... i would be very thankful to the people who ever can clarify this doubt of mine
Datagrid and edit linkbutton
Collapse
X
-
Hi ravi,
To get a particular value in data Grid you should write the code in
DataGrid's Edit Command Event, you just try the code below
dim strvalue as string
strvalue=e.item .cells(0).text
u can specify the cell index which value u want, that value will be stored in strrvalue.
I hope this may helps u
Regards,
RAJU
Comment