vote up 0 vote down star

I am loading a custom ascx control in page_load of the page that hosts it. This creating all sorts of issues with postbacks. Mainly, control (textboxes, dropdowns,etc) states are getting reset before the event handlers can process them.

Does any one have any good examples of how I could handle this?

My site design can be seen here.

I've been told in a previous question that I can let the control manage its own state.

flag

2 Answers

vote up 2 vote down check

This has been asked so many times. Take a look at this for example: http://stackoverflow.com/questions/1001222/setting-the-controltovalidate-on-a-validator/1001270#1001270

link|flag
vote up 1 vote down

Viewstate is restored before the page load event, and therefore dynamic controls need to be loaded and added to the page before the page load event or their state won't be restored as you expect. Do it in the Init event instead.

link|flag
Do you have an example? My ASP is pathetic.. – Matt Oct 30 at 1:07
This is not true. You can dynamically load controls in Page_Load event just fine. The control will play catch-up. See this clariusconsulting.net/blogs/vga/… – epitka Oct 30 at 18:11

Your Answer

Get an OpenID
or

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