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.73K
1 Posted Topic
The code within Button1_Click function throws a run time exception. Use this one instead. [code] protected void Button1_Click(object sender, EventArgs e) { if (ProductsSelectedIndex < 0) { Label2.Text = "Please make a selection"; } else { GridViewRow gd = GridView1.Rows[ProductsSelectedIndex]; Label2.Text = gd.Cells[0].Text; // replace 0 with the column whose …
The End.
pfdsilva