2010-09-28 隱藏GridView 4111 0 ASP.NET 2016-06-29 摘要:隱藏GridView protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header) { e.Row.Cells[2].Visible = false; } } ASP.NET 回首頁