在RowDataBound的事件里
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#eef7fe'");
//鼠标移开设置成别外样式
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#EEEEEE'");
}
注:以上代码网络有。可以直接搜索'GridView行高亮效果'就可找到相关资源。