vote up 0 vote down star

How can I get the underlying DataItem from a GridView row that is in edit mode and the user clicks on "Update"?

I have an editable GridView. I've added a CustomValidator to the Edit view of one of the columns. When the user clicks on Update I run a server validate method and need to get the underlying DataItem of the row being edited so that I can get the primary key of the data item for use in the validation.

GridView1.Rows[GridView1.EditIndex].DataItem;

This does not work. I guess because the GridView isn't databinded on the update command?

flag

1 Answer

vote up 2 vote down check
GridView1.DataKeys[GridView1.EditIndex].Value;
link|flag
That is perfectly correct. Thank you very much! – webdtc Jan 19 at 6:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.