绑定多个gridview的线程

发布于 2024-12-10 21:59:41 字数 437 浏览 0 评论 0原文

我在按钮单击时绑定 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 技术交流群。

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

发布评论

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

评论(1

两人的回忆 2024-12-17 21:59:41

You may take a look at the following article about asynchronous pages.

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