欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

GridView控件如何显示序号

程序员文章站 2023-12-19 22:42:04
在asp.net 中,如果想 gridview 列表中显示序列号,不需要自己编写获取序号的方法,通过container.dataitemindex 属性加 1 就可以实现了...

在asp.net 中,如果想 gridview 列表中显示序列号,不需要自己编写获取序号的方法,通过container.dataitemindex 属性加 1 就可以实现了,绑定在列表中就 ok 了!
实例代码:

<asp:gridview id="gvlist" runat="server" width="100%">
  <columns>
    <asp:templatefield headertext="序号" headerstyle-width="10%">
      <itemtemplate>
        <%# (container.dataitemindex + 1).tostring()%>
      </itemtemplate>
    </asp:templatefield>
    <asp:templatefield headertext="地市">
      <itemtemplate>
        <%# eval("city").tostring()%>
      </itemtemplate>
    </asp:templatefield>
    <asp:templatefield headertext="企业名称">
      <itemtemplate>
          <%# eval("com_name")%>
      </itemtemplate>
    </asp:templatefield>
  </columns>
</asp:gridview>

展示效果:

GridView控件如何显示序号

是不是实现方法很简单,如果项目中需要实现gridview列表中显示序列号,就按照上面的做法动手实现吧!

上一篇:

下一篇: