日期:2014-05-18 浏览次数:21056 次
  
  protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
           e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#F0F0F0';this.style.cursor='hand';");        
        }
    }