页面加载时自动回发

发布于 2024-08-03 01:34:10 字数 607 浏览 6 评论 0原文

我需要在第一次加载时自动回发我的页面,并且我需要等待整个页面完成加载,然后再回发页面。

我在页面加载中使用的

if (!IsPageWasPostBack)
      {
        ScriptManager.RegisterStartupScript(Page, Page.GetType(), "forcePostBack", "Sys.WebForms.PageRequestManager.getInstance().add_endRequest(postBackLoading);function postBackLoading(){__doPostBack('" + this.Page.ClientID + "','');}", true);
      }

IsPageWasPostBack 是一个 viewstate 变量。

当我放置

Sys.WebForms.PageRequestManager.getInstance().add_endRequest

我的页面时,不要发回。如果我删除它,页面会成功发回,但速度很快。

我不想使用计时器来回拨我的帖子。

有什么想法吗?

I need to autopostback my page on the first load, and i need to wait the entire page have finish loading before post back the page.

I use in the page load

if (!IsPageWasPostBack)
      {
        ScriptManager.RegisterStartupScript(Page, Page.GetType(), "forcePostBack", "Sys.WebForms.PageRequestManager.getInstance().add_endRequest(postBackLoading);function postBackLoading(){__doPostBack('" + this.Page.ClientID + "','');}", true);
      }

IsPageWasPostBack is a viewstate variable.

When i put

Sys.WebForms.PageRequestManager.getInstance().add_endRequest

my page dont post back. If i remove it the page post back succesfully but to fast.

I dont want use timer to call back my post back.

Any idea ?

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

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

发布评论

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

评论(3

静若繁花 2024-08-10 01:34:10

你可以使用 jquery 并使用 $(document).ready($("#myform).submit();)
或者你可以等待准备就绪,然后在你的 JavaScript 中设置一个计时器,以便额外等待几秒钟。

you could use jquery and use $(document).ready($("#myform).submit();)
or you could wait for the ready then have a timer in your javascript just to wait a few extra seconds.

疯狂的代价 2024-08-10 01:34:10

等几秒钟怎么样?

$(document).ready(
   setTimeout('$("#myform).submit()',2000);
) ;

What about waiting a few seconds?

$(document).ready(
   setTimeout('$("#myform).submit()',2000);
) ;
遮了一弯 2024-08-10 01:34:10

您是否尝试过使用 LoadComplete事件而不是加载事件?

Have you tried using the LoadComplete event instead of the Load event?

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