DataList怎么样禁用行
DataList 怎么样禁用一行数据,并且让它不可见?急用,在线等~~~
------解决方案--------------------在ItemDataBound事件里
e.Item.Visible = false;
------解决方案--------------------页面Item里的tr标签: <tr id= "mytr " runat= "server "> </tr> 一定要runat=server
ItemDataBound:
((HtmlTableRow)e.Item.FindControl( "mytr ")).Attributes.Add( "style ", "display:none ");
要知道Item是什么类型,你在这里加display:none的style有什么意义~~~
没有反应也不足为怪吖,嘻嘻~~~