开发者

ASP.NET: Viewstate and programmatically adding user controls

开发者 https://www.devze.com 2022-12-10 01:21 出处:网络
When programmatically adding user controls using LoadControl(string 开发者_开发知识库path), when, in the user control\'s page life cycle, does it initialize its sub-controls with its viewstate?

When programmatically adding user controls using LoadControl(string 开发者_开发知识库path), when, in the user control's page life cycle, does it initialize its sub-controls with its viewstate?

I'm asking this question because one of my user controls that's being programmatically loaded has a TextBox control that is not being initialized/loaded by it's viewstate on PostBack on the Page_Load event (which is not the case for a regular .aspx pages and hence my confusion). Overall, I need to retrieve values from the Textbox control.

Thanks


ViewState is loaded before the Page_Load event. If you want your control to work with ViewState, you need to load it and add it to the page before that event — usually on PreInit.

The life cycle reference is here:
http://msdn.microsoft.com/en-us/library/ms178472.aspx?ppud=4

Read the description for the Pre Load event, which immediately precedes Page Load:

Use this event if you need to perform processing on your page or control before the Load event.

Before the Page instance raises this event, it loads view state for itself and all controls, and then processes any postback data included with the Request instance.

Thus by Pre Load time it's already too late. Also, the description for the PreInit event specifically mentions that it's the place to "create or re-create dynamic controls."

0

精彩评论

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