如何在更新面板中控制或停止部分回发

发布于 2024-11-03 08:07:14 字数 301 浏览 2 评论 0原文

我一直在使用更新面板,我所需要的是每当完成部分回发时,我需要检查决定是否继续将回发回服务器的条件,

目前我所知道的是我可以编写必要的代码我

function pageLoad(sender, args) 
{
    if (args.get_isPartialLoad()) {
       // What should be done here to control the partial postback
     }    
}

正在尝试在带有部分回发的更新面板中执行传统的“退出前保存确认”

I have been using update panels , all i need is whenever a partial post back is done , i need to check for a condition which decides whether to proceed that post back to server or not

for now all i know is i can write the necessary code in

function pageLoad(sender, args) 
{
    if (args.get_isPartialLoad()) {
       // What should be done here to control the partial postback
     }    
}

i am trying to do the conventional "save confirmation before exit" in update panels with partial postback

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

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

发布评论

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

评论(1

一瞬间的火花 2024-11-10 08:07:14

我将在 1 个示例中为您提供有关该问题的解决方案。

更新面板部分回发有一个开始、结束和初始化事件,并且附加

function pageLoad(sender, arg) {
    if (!arg.get_isPartialLoad()) {
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(update_begin);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(update_end);
Sys.WebForms.PageRequestManager.getInstance().add_initializeRequest(ControlMyPostBack);
          }
        }

 function update_begin(sender, args) {
        }

 function update_end(sender, args) {
        } 

function ControlMyPostBack(sender, args)
       {
        if(condition)
           {
           //abort my partial post back
           args.set_cancel(true); 
           } 
       }

在这三个函数中,您可以控制您的部分回发
而且这条线也可以阻止你发回帖子,但我认为这只是在异步情况下

Sys.WebForms.PageRequestManager.getInstance().abortPostBack();

I will provide you a solution about that matter in 1 example.

There is a begin ,end and initialize events for the update panel partial post back and it attached as follow

function pageLoad(sender, arg) {
    if (!arg.get_isPartialLoad()) {
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(update_begin);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(update_end);
Sys.WebForms.PageRequestManager.getInstance().add_initializeRequest(ControlMyPostBack);
          }
        }

 function update_begin(sender, args) {
        }

 function update_end(sender, args) {
        } 

function ControlMyPostBack(sender, args)
       {
        if(condition)
           {
           //abort my partial post back
           args.set_cancel(true); 
           } 
       }

in these 3 functions, you can control your partial post backs
and also this line can stop your post back but I think it's only in async case

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