将视图状态数据附加到动态控件的最后阶段是什么?

发布于 2024-12-02 23:30:01 字数 455 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻之岛 2024-12-09 23:30:01

以下是 ASP.NET 页面生命周期期间发生的事件:

1)Page_PreInit
2)Page_Init
3)Page_InitComplete
4)Page_PreLoad
5)Page_Load
6)Control Events
7)Page_LoadComplete
8)Page_PreRender
9)SaveViewState
10)Page_Render
11)Page_Unload

在上述事件中,Page_Render 是页面引发的唯一事件。所以我们无法为此事件编写代码。

Following are the events occur during ASP.NET Page Life Cycle:

1)Page_PreInit
2)Page_Init
3)Page_InitComplete
4)Page_PreLoad
5)Page_Load
6)Control Events
7)Page_LoadComplete
8)Page_PreRender
9)SaveViewState
10)Page_Render
11)Page_Unload

Among above events Page_Render is the only event which is raised by page. So we can't write code for this event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文