GridView光棒效果

来源:互联网 发布:ibatis拦截器打印sql 编辑:程序博客网 时间:2024/04/27 13:34

      if(e.Row.RowType == DataControlRowType.DataRow)
      {
          e.Row.Attributes.Add("onmouseover", "curruntcolor=this.style.backgroundColor;this.style.backgroundColor='#EFEFEF'");

          e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=curruntcolor");
          //选择任意处都选择
          e.Row.Attributes.Add("onClick", "javascript:__doPostBack('" + gvCustomer.ID + "','Select$" + e.Row.RowIndex + "');");

      }

原创粉丝点击