码迷,mamicode.com
首页 > 其他好文 > 详细

GridView控件的光棒效应

时间:2015-08-13 22:01:47      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

1 // 光棒效应
2         protected void gvBookInfos_RowDataBound(object sender, GridViewRowEventArgs e)
3         {
4             if(e.Row.RowType==DataControlRowType.DataRow)
5             {
6                 e.Row.Attributes.Add("onmouseover", "currentColor=this.style.backgroundColor;this.style.backgroundColor=‘yellow‘");
7                 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentColor");
8             }
9         }

 

GridView控件的光棒效应

标签:

原文地址:http://www.cnblogs.com/xjx8205/p/4728383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!