这个问题似乎很常见,我已经完成了这个答案。
不幸的是,我的页面仍然没有被分页。这是我的代码在 C# 中的样子:
SqlCommand command = new SqlCommand("(SELECT ......", Connection);
SqlDataAdapter myAdapter = new SqlDataAdapter(command);
DataTable dt = new DataTable();
myAdapter.Fill(dt);
command.Connection = connection;
command.Connection.Open();
GridView1.DataSource = dt;
GridView1.DataBind();
GridView1.AllowPaging = true;
GridView1.PageSize = 15;
command.Connection.Close();
command.Connection.Dispose();
不幸的是,当我这样做时,我的分页没有出现。难道我做错了什么?
谢谢