新微赢技术网
标题:
在GridView中鼠标移动到行该行颜色变换
[打印本页]
作者:
想念~!
时间:
2009-3-16 17:36
标题:
在GridView中鼠标移动到行该行颜色变换
1.在GridView中 鼠标移动到行 该行颜色变换
步骤1.为GridView添加RowCreated的事件。事件代码如下:
protected void gv_typelist_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#99cc00'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor");
}
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2