GridView_RowDataBound事件:
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#f8eedf'");
if (e.Row.RowIndex % 2 == 0)
{
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#ffffff'");
}
else
{
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#f4f4f4'");
}
}