前端之家收集整理的这篇文章主要介绍了
如何在自动生成的列中隐藏ASP.NET GridView中的列?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
GridView1.Columns.Count总是为零,甚至
sqlDataSource1.DataBind();
但Grid是确定
我可以
for (int i = 0; i < GridView1.HeaderRow.Cells.Count;i++)
我在这里重命名请求标头
但
GridView1.Columns[i].Visible = false;
我不能使用它,因为GridView1.Columns.Count是0。
那么我该如何隐藏呢?
尝试把e.Row.Cells [0] .Visible = false;在您的网格的RowCreated事件内。
protected void bla_RowCreated(object sender,GridViewRowEventArgs e)
{
e.Row.Cells[0].Visible = false; // hides the first column
}
这样就自动隐藏整个列。
您不能通过grid.Columns [i]在gridview的DataBound事件中访问生成的列。
原文链接:https://www.f2er.com/aspnet/254732.html