将视图状态数据附加到动态控件的最后阶段是什么?
我有一个 Ascx
控件,我使用 Loadcontrol
重新加载每个 Page_load
。
此 Ascx
有一个按钮和标签。
标签最初包含“aaa
”。
当我单击按钮时,页面重新加载并重新创建 ascx。
好处是 "aaa"
被保留 - 尽管它是 ascx 的新实例。
我想知道为什么?我自己回答说这是因为 ASCX 的 ID 是相同的,所以他将上次回发的视图状态附加到当前实例。
问题
我可以创建控件的最新页面事件是什么 这样它将能够将视图状态(来自上次回发)附加到新生成的控件?
I have an Ascx
control which I reload every Page_load
using Loadcontrol
.
This Ascx
has a Button And Label
The Label initially contains "aaa
".
When I click the button the page reloads and recreates the ascx.
The good thing is that the "aaa"
is kept - although it's a new instance of the ascx.
I was wondering to my self why ? and I've answered to myself that's its because the ID of the ASCX which is the same so he is attaching the viewstate from the last postback to the current instance.
Question
What is the latest page event which I can create the control
so that it will be able to attach the viewstate (from the last postback)to the new generated control ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是 ASP.NET 页面生命周期期间发生的事件:
在上述事件中,Page_Render 是页面引发的唯一事件。所以我们无法为此事件编写代码。
Following are the events occur during ASP.NET Page Life Cycle:
Among above events Page_Render is the only event which is raised by page. So we can't write code for this event.