Posts
 
Reputation
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
~9K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for psathish2

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 …

Member Avatar for jdesk
-3
9K

The End.