• 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 + "\"吗?')"
    );
                }
            }

        }
  • 相关阅读:
    87 求先序排列
    iOS App用WKWebView加载h5, h5多页面手势返回,h5返回App
    H5判断是手机端浏览器or原生App Webview
    vue-router笔记
    我的博客园页面定制 CSS 代码
    用swiper实现不规则分页滚动 & 给分页器加颜色
    Angular1.6.9 选择本地文件上传后台
    Vue移动端上拉加载更多实现请求分页数据
    导航折叠菜单
    类似于Flipboard页面翻折效果
  • 原文地址:https://www.cnblogs.com/tongdengquan/p/6090568.html
Copyright © 2020-2023  润新知