zoukankan      html  css  js  c++  java
  • GridView的几个小技巧

           GridView 下增加自动编号列

           此处是用GridView自带分页
    <asp:TemplateField HeaderText="序号">
    <ItemTemplate>
    <%this.GridView1.PageIndex  * this.GridView1.PageSize + Container.DataItemIndex + 1%>
    </ItemTemplate>
    </asp:TemplateField>
        
          下面是用AspNetPager分页控件的情况:
    <asp:TemplateField HeaderText="序号">
    <ItemTemplate>
    <%# (this.Pager1.CurrentPageIndex - 1* this.Pager1.PageSize + Container.DataItemIndex + 1%>
    </ItemTemplate>
    </asp:TemplateField>
         
           其它情况举一反三了!

         GridView 增加删除确认以及鼠标划过行变色


      protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            
    //如果是绑定数据行
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                
    //鼠标经过时,行背景色变
                e.Row.Attributes.Add("onmouseover""this.style.backgroundColor='#E6F5FA'");
                
    //鼠标移出时,行背景色变
                e.Row.Attributes.Add("onmouseout""this.style.backgroundColor='#FFFFFF'");

                
    //当有编辑列时,避免出错,要加的RowState判断
                if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
                {   
                   ((LinkButton)e.Row.Cells[
    4].Controls[0]).Attributes.Add("onclick""javascript:return confirm('你确认要删除:\"" + e.Row.Cells[2].Text + "\"吗?')");
                }
            }

        }
      
  • 相关阅读:
    Boost练习程序(multi_index_container)
    mathematica练习程序(图像取反)
    【转】媒体播放器三大底层架构
    CentOS安装中文支持
    Retrofit2文件上传下载及其进度显示
    Andorid面试问题整理
    5分钟实现Android中更换头像功能
    Android中突发情况Activity数据的保存和恢复
    5分钟让你学会用最高效的工具解析所有Json
    android http 和https请求
  • 原文地址:https://www.cnblogs.com/wintersun/p/505001.html
Copyright © 2011-2022 走看看