如何使用存储过程实现Gridview自定义分页?
有人可以将我重定向到您自己的博客链接或任何其他链接,解释有关如何使用存储过程实现 gridview 自定义分页的完整教程吗?
我在 google 中的搜索给了我 2006 年的旧文章。现在我正在使用 asp.net 3.5 和 c#。
Can someone redirect me to your own blog link or any other link explaining complete tutorial about how to implement gridview custom paging using stored procedure?
My search in google giving me old articles from year 2006. Right now I am using asp.net 3.5 and c#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
.aspx 页面
codebehind
仅在我转到当时使用 linq 的另一个项目之前完成了 cust 结果,但这可能会帮助您了解使 gridview 运行所需的内容。这是使用 linq 和 AdventureWorks 作为示例数据库
代码解释现在您需要注意的是
aspx 页面上的列和绑定字段,其中 DataField = 数据库中列的名称,标题字段是标记的内容网格视图上列的顶部。
现在在后面的代码中查看
它们从数据源和分页控件进行绑定。如果您需要更多解释,请评论
.aspx page
codebehind
only finished the cust results before I moved on to another project I was using linq at the time but this might help you understand what is needed to get a gridview going. this is using linq with AdventureWorks as a sample database
Explanation of code now what you need to pay attention to is the
and the columns and bound fields on the aspx page where DataField = Name of column in database and the Header field is what is labeled at the top of the column on the gridview.
now on the code behind look at
they do the binding from a data source and the paging control. comment if you need some more explaination
检查下面的代码。
然后我们需要生成包含总行数、页面大小和当前页面的分页器,下面是在此处填充分页器的示例代码,分页器链接总数为 5,可以通过重置名为totalLinkInPage 的局部变量来进一步自定义,并具有第一个和最后一个按钮还可以在当前页面为第一页或最后一页时自动启用或禁用。
查看生成分页代码和绑定gridview代码(参考):-
使用 gridview 中的存储过程在 asp.net 中自定义分页,具有良好的分页
Check the code below.
Then we need to generate pager with total no of rows, page size and current page, below is the sample code that populating pager here total number of pager links is 5 that can be customize further by resetting local variable named totalLinkInPage and have first and last button also which automatic enable or disable when current page is first or last accordingly.
Check out generate pagination code and bind gridview code (reference):-
Custom paging in asp.net using stored procedure in gridview with nice pagination
由于 SQL 的语法自 2006 年以来没有太大变化,因此没有太多需要更新的内容。在存储过程方面,您仍然需要执行 ROW_Number() 调用。
Since SQL's syntax hasn't changes much since 2006, there isn't much to update. On the stored procedure side you would still do a ROW_Number() call.