how to capture the id of linkbutton
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
hi all, i have a question regarding the id of link button . I am placing the link button in a gridview, Can anyone suggest me the way to do this?
Thanks Mukkanti
-
hi all, i have a question regarding the id of link button . I am placing the link button in a gridview, Can anyone suggest me the way to do this?
Thanks Mukkanti
gridviews have rows, rows have cells and cells have your controls. do somethin like this and see what happens
LinkButton lnk =(LinkButton)gv1.Rows.Cells[Index].FindControl("LinkButtonID");
Rocky Success is a ladder which you can't climb with your hands in your pockets.