asp.net 使用自定义GridView分页的自动序列号

yqkkidmi  于 2022-11-26  发布在  .NET
关注(0)|答案(3)|浏览(136)

我正在为GridView和Repeater沿着使用自定义分页。下面是我到目前为止所做的代码:

Default.aspx:
<asp:Repeater ID="rptPager" runat="server">
<ItemTemplate>
    <asp:LinkButton ID="lnkPage" runat="server" Text='<%#Eval("Text") %>' CommandArgument='<%# Eval("Value") %>'
        CssClass='<%# Convert.ToBoolean(Eval("Enabled")) ? "page_enabled" : "page_disabled" %>'
        OnClick="lnkPage_Click" PostBackUrl='<%# "~/UI/SearchCity.aspx?page=" + Eval("Text") %>' OnClientClick='<%# !Convert.ToBoolean(Eval("Enabled")) ? "return false;" : "" %>'></asp:LinkButton>
</ItemTemplate>
</asp:Repeater>

Default.aspx.cs:
private void BindGridView(int pageIndex) //Bind data
{
    List<Country> countryListView = null; //List type variable

    countryListView = aManager.AllCountryList(); //Assigns the data in the list calling the method

    totalRecordCount = countryListView.Count; //Counts total no. of record
    pageSize = 4; //Page size
    int startRow = pageIndex * pageSize; //Variable to assign the starting row

    detailsGridView.DataSource = countryListView.Skip(startRow).Take(pageSize); //Shows data in GridView
    detailsGridView.DataBind();
}

private void BindPager(int currentPageIndex) //Pagination
{
    double getPageCount = (double)((decimal)totalRecordCount / (decimal)pageSize);
    int pageCount = (int)Math.Ceiling(getPageCount); //Count page

    List<ListItem> pages = new List<ListItem>(); //New list item

    /****Pagination starts ****/
    if (pageCount > 1) 
    {
        pages.Add(new ListItem("<<", "1", currentPageIndex > 0));

        for (int i = 1; i <= pageCount; i++)
        {
            pages.Add(new ListItem(i.ToString(), i.ToString(), i != currentPageIndex + 1));
        }

        pages.Add(new ListItem(">>", pageCount.ToString(), currentPageIndex < pageCount - 1));
    }
    /****Pagination ends ****/

    rptPager.DataSource = pages;
    rptPager.DataBind();
}

上面的工作完美。但问题是,当我使用以下生成汽车序列号,它不能正常工作:

<%#(Container.DataItemIndex+1)%>

我的意思是,当我浏览到第2页时,行计数从1开始,其他页也是如此。有没有解决的方法或其他有效的技术来处理这个问题?

x7yiwoj4

x7yiwoj41#

Container.DataItemIndex是绑定到GridView的数据项的索引,它可用于确定GridView行的行索引。因此,它的行为符合预期。
您有两个选择:1-使用您自己的rowcounter变量并将其存储在session或viewpag对象中。
2-更好的方法是让数据库生成行号。2例如,如果你使用的是SQL Server,那么就做如下操作:

SELECT ROW_NUMBER() OVER(ORDER BY SalesYTD DESC) ROW_NUM, * FROM MYTABLE
gojuced7

gojuced72#

以下是GridView自定义分页的解决方案:

<asp:TemplateField HeaderText="Serial Number">
    <ItemTemplate>
        <%# (detailsGridView.PageIndex * detailsGridView.PageSize) + (Container.DataItemIndex + 1) %>
     </ItemTemplate>
</asp:TemplateField>
e0uiprwp

e0uiprwp3#

这是最佳解决方案〈%#(Container.DataItemIndex + 1)%〉

相关问题