绑定多个gridview的线程
我在按钮单击时绑定 4 个网格视图。像这样
gv1.DataSource = GetData("Mill");
gv1.DataBind();
gv2.DataSource = GetData("Factory");
gv2.DataBind();
gv3.DataSource = GetData("Garage");
gv3.DataBind();
gv4.DataSource = GetData("Master");
gv4.DataBind();
他们都使用相同的方法来获取结果,并且他们也需要时间来加载。有什么办法可以并行运行它们吗?我担心,因为他们使用相同的方法来获取数据。
是否可以为它们做线程。如何?
请帮忙
I am binding 4 gridviews on button click. Like this
gv1.DataSource = GetData("Mill");
gv1.DataBind();
gv2.DataSource = GetData("Factory");
gv2.DataBind();
gv3.DataSource = GetData("Garage");
gv3.DataBind();
gv4.DataSource = GetData("Master");
gv4.DataBind();
They all are using the same method for getting the result and they are also taking time to load. Is there any way I can run them parallel? I afraid, because they are using same method to get the data.
Is it possible to do threading for them. How?
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看以下关于异步页面的文章。
You may take a look at the following article about asynchronous pages.