我可以在 ASP.NET 按钮上暂停回发并在完成某些任务后继续吗?

发布于 2024-10-31 07:26:16 字数 322 浏览 0 评论 0原文

如何通过 javaScript 在 asp.net 按钮上暂停回发过程并在某些任务完成后继续?

像这样的东西:

btnRemove.Attributes["onclick"] = string.Format(@"

var itemId=$.trim($('#{0}').val());                             

// stopPostBack() somehow

// do some stuff with itemId

// continue post-back 

", txtMyTextBox.ClientId);

How can I pause post-back process by javaScript on an asp.net button and continue after some task is completed?

Something like:

btnRemove.Attributes["onclick"] = string.Format(@"

var itemId=$.trim($('#{0}').val());                             

// stopPostBack() somehow

// do some stuff with itemId

// continue post-back 

", txtMyTextBox.ClientId);

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

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

发布评论

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

评论(3

飘落散花 2024-11-07 07:26:17

是的,您只需要从 javascript onclick 事件返回 false 即可。

例如:

  <asp:LinkButton ID="btnDelete" runat="server" 
                                                CommandArgument='<%# DataBinder.Eval(Container,
"RowIndex") %>' 
                                                CommandName="Delete" Text="Delete"
                                                onclientclick="return confirm('Are you sure you want to delete this Connection?');" 
                                                ToolTip="Delete the connection" />

Yes, you just need to return false from a javascript onclick event.

eg:

  <asp:LinkButton ID="btnDelete" runat="server" 
                                                CommandArgument='<%# DataBinder.Eval(Container,
"RowIndex") %>' 
                                                CommandName="Delete" Text="Delete"
                                                onclientclick="return confirm('Are you sure you want to delete this Connection?');" 
                                                ToolTip="Delete the connection" />
三人与歌 2024-11-07 07:26:16

所有 onClick() 事件代码都在提交之前处理。如果 onClick 事件处理程序返回 false,该事件将执行代码,然后提交失败。如果返回true,它将执行代码,然后提交。

我认为您不需要“停止”回发。只需在返回 true 之前放置您想要的代码,该代码就会在提交之前执行。

示例:

btnRemove.Attributes["onclick"] = @"

var itemId=$.trim($('#{0}').val());

alert(itemId);

return true;

";

这里的alert()将在提交之前执行。

All onClick() event code is handled before submission. If the onClick event handler returns false, the event will execute the code, then fail to submit. If it returns true, it will execute the code, then submit.

I don't think you need to "stop" the postback. Just put the code you want before returning true and that will execute before the submission.

Example:

btnRemove.Attributes["onclick"] = @"

var itemId=$.trim($('#{0}').val());

alert(itemId);

return true;

";

The alert() here will be executed before submission.

染柒℉ 2024-11-07 07:26:16

是的,我认为通过一个技巧你可以做到这一点。

只需返回 false,为了避免回发,请初始化一个计时器来调用下一个完成工作的函数,并在最后手动触发回发。

Yes, I think with a trick you can do that.

Just return false, to avoid the post back, init a timer to call the next function that make the work, and at the end fire the post back manually.

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