Tagged Questions

0
votes
1answer
131 views

ASP.NET Retrieving GirdViewRow.DataItem on arbitrary post back

Hi there, Is there any way to get a GridViewRow's DataItem property in the handler for an arbitrary post-back?? All DataItems have values during the RowDataBound event, but are null in Button_Click …
0
votes
3answers
1k views

Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax

I have a linkbutton that I want to call a method in the code behind. The method takes a parameter of which I need to stick in a container.dataitem. I know the container.dataitem syntax is correct …
0
votes
1answer
464 views

Get DataItem when updating GridView

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 …