Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: I am no expert but this worked for me, I hope it helps: In your asp GridView keep OnRowCommand="GridView1_RowCommand", in the codebehind protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) { GridViewRow row = (GridViewRow)((LinkButton)e.CommandSource).NamingContainer; string FirstName = row.Cells[0].Text; string LastName = row.Cells[1].Text; //etc..., the number in the [] refers to the … |
The End.