gv_RowCreateed(…)
{
//鼠标移动到某行时,改变背景色
e.Row.Attributes.Add(“ommouseover”,”currentcolor=this.style.backgroundColor;this.style.backgroundColor=’#eaeaea’;”);
//鼠标移走时恢复
e.Row.Attributes.Add(“onmouseout”,”this.style.backgroundColor=currentcolor;”);
}