ASP.Net 中实现GridView鼠标的移入与移出事件

来源:互联网 发布:文泰刻绘怎么设置端口 编辑:程序博客网 时间:2024/05/19 13:24

//实现了gridview的某一行被选中时颜色发生改变的功能

后台代码如下所示:

protected void GridView1_RowCreated(object sender,GridViewRowEventArgs e)   
{
        if (e.Row.RowState == DataControlRowState.Normal && e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#AADDFF'");
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='green' ");
        }
        if (e.Row.RowState == DataControlRowState.Alternate && e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#AADDFF'");
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='White';");
        }
}

//前台中直接给gridview绑定数据就好了,一点点小的知识点希望对急用的人们有帮助!!

 

 


原创粉丝点击