gridview鼠标经过改变行颜色(高亮)

双击GridView的OnRowDataBound事件;
在后台的GridView1_RowDataBound()方法添加代码,最后代码如下所示:

    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
ExpandedBlockStart.gifContractedBlock.gif    
{
        
//首先判断是否是数据行
        if (e.Row.RowType == DataControlRowType.DataRow)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
{
            
//当鼠标停留时更改背景色
            e.Row.Attributes.Add("onmouseover""c=this.style.backgroundColor;this.style.backgroundColor='#C0C0C0'");
            
//当鼠标移开时还原背景色
            e.Row.Attributes.Add("onmouseout""this.style.backgroundColor=c");
        }

    }

 

转载于:https://www.cnblogs.com/xidongs/archive/2009/07/18/1526032.html

你可能感兴趣的:(gridview鼠标经过改变行颜色(高亮))