发表评论
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
Public Function DataRowColorChange(ByRef e As System.Web.UI.WebControls.DataGridItemEventArgs)
If e.Item.ItemIndex < 0 Then
Else
If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
e.Item.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#EEEEEE'")
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor")
End If
End If
End Function
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。