用 JQuery 更新面板替换数据表视图状态操作?
我有一种情况
- 用户可以为一件商品输入多个价格
- 所有数据都保存在视图状态内的数据表或数据集中,直到 表单已保存
- 所有添加/更新/删除操作都会再次在视图状态中执行
- Griviews 放置在更新面板内以显示这些操作
我现在遇到的问题是,由于页面上有许多更新面板,我的 Web 表单变得非常慢,页面大小为由于所有视图状态信息,大约有 800 KB。
- 有没有办法用不同的方法完全替换 updatepanel 和 gridviews ?
- 我怎样才能用 jQuery?
- 使用 JQuery 设置当前任务的实施步骤(不是代码,只是步骤)是什么?
I have a situation where
- User can enter multiple prices for an item
- All data is kept in datatable or datasets inside viewstate until the
form is saved- All add/update/deletes are performed in viewstate again
- Griviews are placed inside update panels to show these operations
Problem I am having right now is that my webforms have gone really slow due to many update panels on the page, page size is touching about 800 KB due to all viewstate information.
- Is there a way I can replace the updatepanel and gridviews altogether with a different approach ?
- How can I replace current situation with
JQuery ? - What would be the implementation steps (not code just steps) to setup my current task with JQuery ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确实不应该为此使用 ViewState 。考虑将
DataTables
和DataSets
存储在 会话状态 相反。You really shouldn't use ViewState for that. Consider storing your
DataTables
andDataSets
in session state instead.