我在页面中有一个 GridView asp 服务器控件,并且我已将其 AllowPaging 设置为 true。现在,我想循环到整个行,但它只迭代到我定义的 PageSize 的数量。
这是asp代码:
<asp:GridView ID="gvName" runat="server" AllowPaging="True" PageSize="5" AutoGenerateColumns="True"></asp:GridView>
这是后面的代码:
List<string> list = new List<String>();
for(int x = 0; x <= 9; x++)
{
list.Add("Name " + (x + 1).ToString());
}
gvName.DataSource = list;
gvName.DataBind();
foreach(GridViewRow row in gvName.Rows)
{
// gvName.Rows.Count only returns 5 instead of the total number of its record that is 10
}
提前感谢您的任何回答。