为 GridView 加载动画
我有一个类似仪表板的界面,用于我正在开发的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试如下操作:
组合使用 AJAX 工具包 UpdatePanel 动画扩展器 执行上述操作,您将有您正在寻找的东西。
这将使您的 GridView 看起来好像在页面加载后动态加载,并且您的用户将看到通知他们的加载图标。
您还可以在此处查看完整的工作(类似)示例。
You can try something like the following:
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.