如何在ajax调用期间限制ViewState的传输
是否可以仅获取asp.net ajax框架中更新面板的相关控件的视图状态。我知道浏览器会在回发期间发送所有视图状态,即使我们不需要整个视图状态来进行 ajax 调用。
Is it possible to get viewstate only for related controls of update panel in asp.net ajax framework. I know that the browser sends all the viewstate during post back, even if we dont need the whole viewstate for ajax calls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这是不可能的。这就是 ASP.NET Ajax 的工作原理。你可能应该使用 jquery ajax 代替
no its not possible. this is how asp.net ajax works. you should probably use jquery ajax instead
看看 Codeplex 的这个优秀案例研究,它也使用了 UpdatePanel 并遭受了 ViewState 臃肿的困扰。
http://encosia. com/2008/12/03/have-you-ever-wondered-why-codeplex-is-so-slow/
Have a look at this excellent case study of Codeplex, which also used UpdatePanel and suffered from bloated ViewState.
http://encosia.com/2008/12/03/have-you-ever-wondered-why-codeplex-is-so-slow/