这是我填充 GridView 控件的方式。我是从代码隐藏执行此操作,而不是从 .aspx 前端执行此操作。以下是我所拥有的极其简略的版本:
private void UpdateGridView()
{
DataTable temptable = new DataTable();
DataColumn idcol = new DataColumn();
DataColumn titlecol = new DataColumn();
idcol.ColumnName = "ID";
titlecol.ColumnName = "Title";
temptable.Columns.Add(idcol);
temptable.Columns.Add(titlecol);
...(get data from the database, store it as variable "x")...
DataRow tempdr;
tempdr[idcol] = x.ID;
tempdr[titlecol] = x.Title;
temptable.Rows.Add(tempdr);
GridView1.DataSource = temptable;
GridView1.DataBind();
}
要处理分页,将 GridView 的“AllowPaging”设置为 true,并且我有以下事件处理程序:
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
UpdateGridView();
}
这很好用!
但是,我也有 RowDataBound 事件处理程序:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
e.Row.Cells[0].Visible = false; //hide the ID
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "this.style.cursor='pointer';this.style.textDecoration='underline';";
e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';";
e.Row.Attributes["onclick"] = "location.href='newsindex.aspx?NewsArticleID=" + e.Row.Cells[0].Text + "'";
}
}
我的目标是让行本身可以点击,并引导到另一个页面,其中的查询字符串等于该行的 ID。我需要 ID 列中的值,以便在创建行时可以访问它,以便将 ID 添加到链接的 QueryString 中。但我不希望 ID 列可见,所以我在行中添加:e.Row.Cells[0].Visible = false;
这样做会破坏分页功能。页码不再显示。如果我注释掉这一行,一切正常,但 ID 在 GridView 中可见。
1)为什么?2)我可以做些什么来获得相同的功能,但尽可能少的更改?