用 JQuery 更新面板替换数据表视图状态操作?

发布于 2024-10-04 09:49:25 字数 408 浏览 2 评论 0原文

我有一种情况

  • 用户可以为一件商品输入多个价格
  • 所有数据都保存在视图状态内的数据表或数据集中,直到 表单已保存
  • 所有添加/更新/删除操作都会再次在视图状态中执行
  • Griviews 放置在更新面板内以显示这些操作

我现在遇到的问题是,由于页面上有许多更新面板,我的 Web 表单变得非常慢,页面大小为由于所有视图状态信息,大约有 800 KB。

  1. 有没有办法用不同的方法完全替换 updatepanel 和 gridviews ?
  2. 我怎样才能用 jQuery?
  3. 使用 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.

  1. Is there a way I can replace the updatepanel and gridviews altogether with a different approach ?
  2. How can I replace current situation with
    JQuery ?
  3. What would be the implementation steps (not code just steps) to setup my current task with JQuery ?

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

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

发布评论

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

评论(1

潦草背影 2024-10-11 09:49:25

您确实不应该为此使用 ViewState 。考虑将 DataTablesDataSets 存储在 会话状态 相反。

You really shouldn't use ViewState for that. Consider storing your DataTables and DataSets in session state instead.

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