保存成功后显示消息 BlockUI 更新面板
我想在服务器端回发后显示状态消息。目前,为了做到这一点,
我使用 blockUI 来阻止 div 当保存正在进行时
我使用更新面板的自定义结束请求处理程序取消阻止 div
- 要显示状态消息,我使用 scriptmanager registerstartupscript() 在服务器端代码的 try catch 块中。一切正常,但是这会在 div 解锁之前显示状态消息。
如何仅在 div 解锁后显示成功/错误消息?
I want to display a status message after a server side postback. Currently to do this,
I use blockUI for blocking a
div while the save is in progressI unblock the div with a custom End request handler for my update panel
- To display status messages, I use scriptmanager's registerstartupscript() in my try catch block on server side code. All works well, however this displays the status messages before the div is unblocked.
How do I show my success/error messages only after the div has been unblocked ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试
pageLoading
或pageLoaded
脚本管理器事件处理程序而不是endRequest
,即:-----------------
或者你还有另一个选择。将服务器回调上的消息写入隐藏字段,然后在
endRequest
处理程序隐藏 div 中,检查隐藏字段中是否有消息,如果消息存在则显示它。You can try
pageLoading
orpageLoaded
script manager event handers instead ofendRequest
, i.e.:-----------------
Or you have another option. Write message on server callback to hidden field and then in your
endRequest
handler hide div, check if there is message in hidden field and if message exists display it.