posts - 930,  comments - 588,  views - 402万
< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
       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 + "\"吗?')");
            }
        }

    }
  
posted on   PetterLiu  阅读(1016)  评论(0编辑  收藏  举报
编辑推荐:
· [.NET]调用本地 Deepseek 模型
· 一个费力不讨好的项目,让我损失了近一半的绩效!
· .NET Core 托管堆内存泄露/CPU异常的常见思路
· PostgreSQL 和 SQL Server 在统计信息维护中的关键差异
· C++代码改造为UTF-8编码问题的总结
阅读排行:
· 实操Deepseek接入个人知识库
· CSnakes vs Python.NET:高效嵌入与灵活互通的跨语言方案对比
· 【.NET】调用本地 Deepseek 模型
· Plotly.NET 一个为 .NET 打造的强大开源交互式图表库
· 上周热点回顾(2.17-2.23)
点击右上角即可分享
微信分享提示