在云那方

首页 新随笔 联系 订阅 管理
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        
//如果是绑定数据行 
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            //鼠标移入时,行背景色变 
            e.Row.Attributes.Add(
"onmouseover""this.style.backgroundColor='#ff9900'");
            
//鼠标移出时,行背景色变 
            e.Row.Attributes.Add("onmouseout""this.style.backgroundColor='#ffffff'");
        }
    }
posted on 2008-11-20 10:46  Rich.T  阅读(198)  评论(0编辑  收藏  举报