Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将为一些从未使用过 jQuery 的人展示回发和 jQuery ajax 调用之间的区别。
当我创建一个新的 webforms 项目时,几乎不会注意到回发。您对如何模拟具有巨大视图的慢速页面有任何建议吗?或者任何其他可以显示 AJAX 调用强度与将整个页面(表单)发布回服务器的东西。
在 GridView 上启用 ViewState 并一次绑定数千条记录。这将创建数量惊人的 ViewState。如果这还不够,只需获取一个巨大的 DataTable 并将其保存在 ViewState 中。就像是:
DataTable dt = GetDataTableWithThousandsOfRows(); ViewState["Data"] = dt;
现在查看页面渲染时的 ViewState。