ASP.NET Gridview特效(持续更新中...)
1、鼠标滑过时,行变色效果:
在Gridview的RowDataBound事件中加入以下代码:
//判定当前的行是否属于datarow类型的行
if (e.Row.RowType == DataControlRowType.DataRow)
{
//当鼠标悬停在数据行上时,保存原来的行背景色并设置新的背景色
e.Row.Attributes.Add("onmouseover", "currentColor=this.style.backgroundColor;this.style.backgroundColor='green';");
//当鼠标移开后,将背景颜色恢复为原来的颜色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentColor;");
}