提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示前台增加事件:OnRowCreated="GridView1_RowCreated"
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header)
{
e.Row.Cells[].Visible = false; //如果想使第3列不可见,则将它的可见性设为false
}