Gridview:在页面上逐个显示行

时间:2016-07-23 02:32:17

标签: c# asp.net gridview

我在主页的网格视图中显示了大约200条记录。在网格视图完全显示在页面上之前,处理记录大约需要5分钟。

如何修改此项,以便逐行显示行,直到显示所有记录。

Process record 1 -> display on the page
Process record 2 -> display on the page
Process record 3 -> display on the page
.
.
.
Process record n -> display on the page

最后将显示包含所有记录的网格视图。

1 个答案:

答案 0 :(得分:0)

您可以使用ajax在页面滚动上加载数据。当用户向下滚动时,页面将向服务器发送请求以获取数据并显示它。这将以多种方式改进您的页面,即使您有很多行要显示,这也很有用。

这里Mudassar Khan at www.aspsnippets.com/给出了关于同样技巧的完整演示。

我希望,这肯定会帮助你。