asp.net中datagrid行改变颜色问题?
书上介绍在datagrid的dataitembound事件中加入代码就可以实现鼠标在datagrid行时移动时改变行的背景色,但我的不行呀If (e.Item.ItemType = ListItemType.Item And e.Item.ItemType = ListItemType.AlternatingItem) Then
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='#6699ff'")
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#EFF3F7'")
End If