up vote 1 down vote favorite
share [g+] share [fb]

When adding an EditItemTemplate of some complexity (mulitple fields in one template), and then parsing the controls from the RowUpdating event, the controls that were manually entered by the user have no values. My guess is there is something going on with when the data is bound, but I've had instances where simply adding and attribute to a control in codebehind started the behavior and removing that code made the code work. As a work-around, I can Request(controlname.UniqueId) to get it's value, but that is rather a hack.

Edit When I access the value like so

TextBox txtValue = gvwSettings.SelectedRow.FindControl("txtValue") as TextBox;

the text box is found, but the .Text is not the user input.

link|improve this question

55% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Did you turn off ViewState? Did you add control programmatically in the template? If so, did you create them at the correct stage?

link|improve this answer
feedback

You should be able to use the GridViewUpdateEventArgs to retrieve the inputted value, for example:

TextBox txtValue = gvwSettings.SelectedRow.FindControl("txtValue") as TextBox;

I have used that syntax before and it works like a charm.

link|improve this answer
feedback

Moved post-back data-bind to Page_Init

link|improve this answer
No, that is too early :) Anywhere from Load to PreRender is ok IIRC. I prefer to stick to Load. – leppie Sep 29 '08 at 16:25
Are you maybe re-binding on the postback? – leppie Sep 29 '08 at 16:26
from msdn.microsoft.com/en-us/library/ms178472.aspx During load[Page Load], ...control properties are loaded [from]... control state. So, my theory is there is an issue with the gridview not knowing about its controls 'cause they're not there yet. – Greg Ogle Oct 2 '08 at 2:29
feedback

Your Answer

 
or
required, but never shown

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