ASP 页面 - 单击触发按钮后出现冗长的代码

发布于 2024-12-06 18:04:44 字数 202 浏览 0 评论 0原文

我有一些相当大的asp.net页面,有一个大约200 kBytes的数据表...... 还有一个 asp:button 需要 AGES 来触发后台代码。

例如,在代码执行之前,更新进度会显示大约 12 到 20 秒!

较短的页面在不到一秒的时间内就会触发相同的代码隐藏。 Javascript onclick 代码会立即触发。

知道为什么吗?

I have some asp.net page which is quite large, with a table of some 200 kBytes of data...
And an asp:button that takes AGES to fire the code-behind.

For instance the update progress displays for some 12 to 20 seconds before code executes!

The same code-behind fires in less than a second from a shorter page.
And Javascript onclick code fires instantly.

Any idea why?

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

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

发布评论

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

评论(1

怪我闹别瞎闹 2024-12-13 18:04:44

您的视图状态可能太大,导致所有这些数据在每次回发时来回传输。我建议评估您的视图状态并通过 JS/JQuery 按需减少大数据的显示 - 通过 ScriptService 或通用处理程序 (+JSON) 逐页进行。

Your view state may be too large, causing all this data to travel back and forth with every postback. I suggest evaluating your view state and mitigating the display of large data via JS/JQuery on demand - on a page by page basis via ScriptService or generic handler (+JSON).

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