为 GridView 加载动画

发布于 2024-11-08 21:33:15 字数 152 浏览 0 评论 0原文

我有一个类似仪表板的界面,用于我正在开发的 ASP.NET (C#) 应用程序。此页面上有一些 GridView 需要一段时间才能从数据库查询所有数据。 GridView 只是显示数据。有没有一种方法可以加载页面并在加载时为每个 GridView 显示一个加载图标?

谢谢。

I have a dashboard like interface for the ASP.NET (C#) application I am developing . There are a few GridView's on this page that take awhile to query all the data from the database. The GridView's just display data. Is there a way I can load the page and just display a loading icon for each of this GridView's while they load?

Thanks.

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

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

发布评论

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

评论(1

说谎友 2024-11-15 21:33:15

您可以尝试如下操作:

  1. 将所有 GridView 放在更新面板内
  2. 不要在页面加载时绑定它们 在
  3. 更新面板内的页面上放置一个计时器,并将其设置为在页面加载后 500 毫秒触发
  4. 现在,绑定您的 GridViews

组合使用 AJAX 工具包 UpdatePanel 动画扩展器 执行上述操作,您将有您正在寻找的东西。

这将使您的 GridView 看起来好像在页面加载后动态加载,并且您的用户将看到通知他们的加载图标。

您还可以在此处查看完整的工作(类似)示例。

You can try something like the following:

  1. Place all of your GridViews inside of Update Panels
  2. Do not bind them on page load
  3. Place a timer on the page inside an update panel and set it to trigger 500ms after the page loads
  4. Now, bind your GridViews

Combine the above with the AJAX Toolkit UpdatePanel Animation Extender and you'll have what you're looking for.

This will make it appear as if your GridViews are being loaded dynamically AFTER the page loads and your users will see loading icons notifying them.

You can also see a full working (similar) example here.

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