GridView 怎么根据需要隐藏表头
1个回答
展开全部
d void GridViewTrain_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (Session["Role"].ToString() == "1")
{
//e.Row.Cells[4].Visible = false;
e.Row .Cells [4].Text ="";
}
}
}
因为设置了分页,所以得加个e.Row.RowType的判断
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (Session["Role"].ToString() == "1")
{
//e.Row.Cells[4].Visible = false;
e.Row .Cells [4].Text ="";
}
}
}
因为设置了分页,所以得加个e.Row.RowType的判断
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询