Getting data from Gridview

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hi all,

I have a gridview that I have populated. The gridview has a datakey set.

I have a check box column and a seperate button.

When I click the button, I want to get more detail from the row that the
datakey belongs to. (I know the value of the datakey... what I need to do is
to get the row that the datakey belongs to, so that I can get more values).

Is this even possible?

I have tried google, but I am not sure how to phrase my query to get what I
want.

Any help would be appreciated.
--
Best regards,
Dave Colliver.
http://www.AshfieldFOCUS.com
~~
http://www.FOCUSPortals.com - Local franchises available
 
GridViewRow row = this.GridViewPapers.SelectedRow;
string paperTitle = row.Cells[5].Text;
 
Back
Top