WebPart 上的用户控制、回发/视图状态问题

发布于 2024-09-10 09:36:23 字数 434 浏览 5 评论 0原文

我正在使用 Sharepoint WebPart 来加载 UserControl,该控件有一个按钮可以对回发进行一些处理。我遇到了一个问题:当我第一次单击按钮时,数据加载了! IsPosback 丢失,但是当我再次单击该按钮时不会发生这种情况。我认为我的问题在这里解释:Sharepoint Lifecycle,但我还没有找到解决方法。

任何帮助将不胜感激。

其他信息: 我在 WebPart 的 OnLoad 事件上使用 EnsureChildControls,并在 CreateChildControls 上加载 UserControl。

I'm using a Sharepoint WebPart to load a UserControl which has a button that does some processing on PostBack. I got a problem: when I click the button for the first time, the data loaded on ! IsPosback gets lost, but this does not occur when I click the button again. I think my problem is explained here: Sharepoint Lifecycle, but I haven't been able to find a workaround.

Any help would be really appreciated.

Additional Info:
I'm using EnsureChildControls on the WebPart's OnLoad event, and loading the UserControl on CreateChildControls.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

|煩躁 2024-09-17 09:36:23

我能够通过以编程方式为用户控件指定 ID 来解决此问题。

例如:

protected void Page_Load(object sender, EventArgs e)
{
    this.ID = "MyUserControlID";
}

更多信息在这里: http://bytes.com/topic/asp-net/answers/314816-dynamically-loaded-control-event-only-reached-2nd-postback

I was able to fix this by programatically specifying an ID to the User Control.

E.g.:

protected void Page_Load(object sender, EventArgs e)
{
    this.ID = "MyUserControlID";
}

More info here: http://bytes.com/topic/asp-net/answers/314816-dynamically-loaded-control-event-only-reached-2nd-postback

挽你眉间 2024-09-17 09:36:23
protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);

    if (ViewState["MyStuff"] == null)
        LoadMyStuffAndSaveToViewState();
    else
        DoSomethingWith(ViewState["MyStuff"]);
}
protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);

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