码迷,mamicode.com
首页 > Windows程序 > 详细

asp.net(c#)GridView实现鼠标悬停高亮显示

时间:2015-01-08 12:49:44      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:

搜索了一下,发现对于这种基本都使用girdview中的RowDataBound事件完成,下面看看网上提供的简单方法
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor=‘#6699ff‘;");
        e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor;");
    }
}

asp.net(c#)GridView实现鼠标悬停高亮显示

标签:

原文地址:http://www.cnblogs.com/qqhfeng/p/4210387.html

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