GridView自動增加序號(三種實現方式)_.Net教程

      編輯Tag賺U幣

      推薦:關于WPF使用MultiConverter控制Button狀態的詳細介紹
      本篇文章小編將為大家介紹,關于WPF使用MultiConverter控制Button狀態的詳細介紹。需要的朋友參考下

      第一種方式,直接在Aspx頁面GridView模板列中.這種的缺點是到第二頁分頁時又重新開始了.
      復制代碼 代碼如下:www.wf0088.com

      <asp:TemplateField HeaderText="序號" InsertVisible="False">
      <ItemTemplate>
      <%#Container.DataItemIndex+1%>
      </ItemTemplate>
      </asp:TemplateField>

      第二種方式分頁時進行了計算,這樣會累計向下加.
      復制代碼 代碼如下:www.wf0088.com

      <asp:TemplateField HeaderText="序號" InsertVisible="False">
      <ItemStyle HorizontalAlign="Center" />
      <HeaderStyle HorizontalAlign="Center"/>
      <ItemTemplate>
      <asp:Label ID="Label2" runat="server" Text='<%# this.GridView1.PageIndex * this.GridView1.PageSize + this.GridView1.Rows.Count + 1%>' />
      </ItemTemplate>
      </asp:TemplateField>

      還有一種方式放在cs代碼中,和第二種相似.
      復制代碼 代碼如下:www.wf0088.com

      <asp:BoundField HeaderText="序號" ></asp:BoundField>
      protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
      {
      if (e.Row.RowIndex != -1)
      {
      int indexID = this.GridView1.PageIndex * this.myGridView.PageSize + e.Row.RowIndex + 1;
      e.Row.Cells[0].Text = indexID.ToString();
      }
      }

      分享:基于自定義Unity生存期模型PerCallContextLifeTimeManager的問題
      本篇文章小編將為大家介紹,基于自定義Unity生存期模型PerCallContextLifeTimeManager的問題。需要的朋友參考下

      來源:模板無憂//所屬分類:.Net教程/更新時間:2013-04-22
      相關.Net教程