我正在使用sql存储过程进行自定义分页。
现在我想为gridview制作一个自定义寻呼机。
我在谷歌搜索并找到有关它的各种文章。
但我没有得到我想要的东西。
如果您对此有任何了解,请帮助我。谢谢, Rajbir
答案 0 :(得分:3)
我认为你在找这样的东西
<ItemTemplate>
<asp:LinkButton ID="lnkPage" runat="server" Text = '<%#Eval("Text") %>' CommandArgument = '<%# Eval("Value") %>' Enabled = '<%# Eval("Enabled") %>' OnClick = "Page_Changed"></asp:LinkButton>
</ItemTemplate>
您会找到更多表单Custom Paging in ASP.Net GridView using SQL Server Stored Procedure
答案 1 :(得分:0)
与在Gridview中使用Paging的存储过程无关。只需要在OnPageIndexChanging事件上绑定GridView。
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
}
请访问此链接,例如:ASP.NET GridView with Custom Paging UI