您的位置:首页 > 编程语言 > ASP

Pager Control for ASP.NET(asp.net分页控件例子)

2007-02-02 20:39 633 查看
Paging is an important thing that every web developer should know about. In ASP.NET 1.1 and 2.0, just
DataGrid
and
GridView
has built-in support for paging, and for somebody who prefers
Repeater
or
DataList
to
DataGrid
or
GridView
(like me!), it is so painful to implement paging. And as a developer, it was very painful for me. So I decided to write a pager control to simplify this problem on my web applications in a developer friendly way. First, I implemented a version of the Pager control last year. It came with some cool features, but also had two major weaknesses.

分页对每个web开发人员来说都是必须弄懂的一种技术。在asp.net1.1和2.0中,只有DataGrid和GridView控件支持分页,但对一些更喜欢使用Repeater和DataList控件的开发人员,分页就很头疼的问题了。我作为一个开发人员,分页同样也曾让我很头疼。所以我决定写一个分页控件以一种友好的方式来简化我的web应用程序的分页问题。。。

详细阅读:http://www.codeproject.com/aspnet/ASPNETPagerControl.asp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: