检查页面是否处于部分呈现模式 ASP.NET 2.0 + AJAX.NET
我需要确定页面是否以部分渲染模式加载(当从 UpdatePanel 内发回时)。
有什么建议么?
I need to determine in the page is loading in a partial rendering mode (when posting back from within an UpdatePanel).
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
ScriptManager 的 IsInAsyncPostBack 属性检查页面是否通过部分加载回发。
You can use the
IsInAsyncPostBack property of ScriptManager to check if the page is loading through a partial postback.