首页 > 编程 > .NET > 正文

ASP.net 2.0 学习之001:鼠标移过GridView的行,前景色和背景色发生变化

2024-07-10 13:06:34
字体:
来源:转载
供稿:网友

1、右击“gridview ”,选择“属性”--“事件”,选择“数据”下的“rowdatabound ”属性,双击它。

 

2、在“gridview1_rowdatabound ”方法下加入下列代码:

 

if (e.row.rowtype == datacontrolrowtype.datarow)
...{
      
//鼠标移动到每项时颜色交替效果
   e.row.attributes.add("onmouseout""this.style.backgroundcolor='white';this.style.color='#003399'");
      e.row.attributes.add(
"onmouseover""this.style.backgroundcolor='#6699ff';this.style.color='#8c4510'");            

 }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表