private void DataGrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
//如果是數據項並其是交替項
if(e.Item.ItemType==ListItemType.Item || e.Item.ItemType ==ListItemType.AlternatingItem)
{
//添加自定義屬性,當鼠標移過來的時設置該行的背景色,並保存原背景色 e.Item.Attributes.Add("onmouseover","currentcolor=this.style.backgroundColor;this.style.backgroundColor='#475575'");
//添加自定義屬性,當鼠標移走時,還原成改行的背景色 e.Item.Attributes.Add("onmouseout","this.style.backgroundColor=currentcolor");
}
}