开发者

Problems maintaining a custom control's (ascx) states between postbacks when loading said ascx control in page_load

I am loading a custom ascx control in pa开发者_C百科ge_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.


This has been asked so many times. Take a look at this for example: Setting the ControlToValidate on a Validator


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜