GridView在绑定的时候怎么去隐藏模版列控件
GridView在绑定的时候怎么去隐藏模版列控件 --------------------编程问答-------------------- // ItemCreated 事件中protected void DataGrid1_ItemCreated(Object sender, DataGridItemEventArgs e)
{
e.Item.Cells[1].Attributs.Add("style","display:none");
} --------------------编程问答-------------------- 我要的不是隐藏列;是仅仅隐藏控件,就象这样
foreach(GridViewRow row in gridview.Rows)
{
CheckBox cb=(CheckBox)row.FindControls("CheckBox");
cb.Visible=false;
}
但是这样隐藏放哪儿好呢?
因为我是要判断这个GridViw是否有数据,没数据才隐藏这个控件呢
补充:.NET技术 , ASP.NET