时间:2021-05-26
本文讲解Repeater控件与PagedDataSource相结合实现其分页功能。PagedDataSource 类封装那些允许数据源控件(如 DataGrid、GridView)执行分页操作的属性。如果控件开发人员需对自定义数据绑定控件提供分页支持,即可使用此类。
PagedDataSource 类的部分公共属性:
AllowCustomPaging // 获取或设置指示是否启用自定义分页的值。 AllowPaging // 获取或设置指示是否启用分页的值。 Count // 获取要从数据源使用的项数。 CurrentPageIndex // 获取或设置当前页的索引。 DataSource // 获取或设置数据源。 DataSourceCount // 获取数据源中的项数。 FirstIndexInPage // 获取页中的第一个索引。 IsCustomPagingEnabled // 获取一个值,该值指示是否启用自定义分页。 IsFirstPage // 获取一个值,该值指示当前页是否是首页。 IsLastPage // 获取一个值,该值指示当前页是否是最后一页。 IsPagingEnabled // 获取一个值,该值指示是否启用分页。 IsReadOnly // 获取一个值,该值指示数据源是否是只读的。 IsSynchronized // 获取一个值,该值指示是否同步对数据源的访问(线程安全)。 PageCount // 获取显示数据源中的所有项所需要的总页数。 PageSize // 获取或设置要在单页上显示的项数。 VirtualCount // 获取或设置在使用自定义分页时数据源中的实际项数。
下面是PagedDataSource类实现Repeater控件的分页显示例子,如图:
复制代码 代码如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
int pageIndex = 1;
try
{
pageIndex = Convert.ToInt32(Request.QueryString["Page"]);
if (pageIndex <= 0) pageIndex = 1;
}
catch
{
pageIndex = 1;
}
DataTable dt = GetDocumentTable();
PagedDataSource pds = new PagedDataSource();
pds.DataSource = dt.DefaultView; // 设置数据源
pds.AllowPaging = true; // 设置指示是否启用分页的值
pds.PageSize = 5; // 设置要在每页显示的数量
pds.CurrentPageIndex = pageIndex - 1; // 设置当前页的索引。
rptDocumentList.DataSource = pds;
rptDocumentList.DataBind();
ltlPageBar.Text = GetPageBar(pds);
}
}
// 分页条
private string GetPageBar(PagedDataSource pds)
{
string pageBar = string.Empty;
int currentPageIndex = pds.CurrentPageIndex + 1;
if (currentPageIndex == 1)
{
pageBar += "首页";
}
else
{
pageBar += " + Request.CurrentExecutionFilePath + "?Page=1">首页";
}
if ((currentPageIndex - 1) < 1)
{
pageBar += "上一页";
}
else
{
pageBar += " + Request.CurrentExecutionFilePath + "?Page=" + (currentPageIndex - 1) + "">上一页";
}
if ((currentPageIndex + 1) > pds.PageCount)
{
pageBar += "下一页";
}
else
{
pageBar += " + Request.CurrentExecutionFilePath + "?Page=" + (currentPageIndex + 1) + "">下一页";
}
if (currentPageIndex == pds.PageCount)
{
pageBar += "末页";
}
else
{
pageBar += " + Request.CurrentExecutionFilePath + "?Page=" + pds.PageCount + "">末页";
}
return pageBar;
}
// 创建测试表
DataTable GetDocumentTable()
{
DataTable dt = new DataTable();
dt.Columns.Add("DocumentId", typeof(int));
dt.Columns.Add("Title", typeof(string));
for (int i = 1; i <= 30; i++)
{
DataRow row = dt.NewRow();
row["DocumentId"] = i;
row["Title"] = "文档标题 " + i + "";
dt.Rows.Add(row);
}
return dt;
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Asp.net提供了三个功能强大的列表控件:DataGrid、DataList和Repeater控件,但其中只有DataGrid控件提供分页功能。相对DataG
ListView选择自动分页时其实就是添加了一个DataPager分页控件两者间存在着嵌套关系《Repeater与ListView》中提到这样的分页并不是高效的
一、程序功能: 为Repeater实现分页 二、窗体设计: 1、新建ASP.NETWeb应用程序,命名为Repeater2,保存路径为http://1
1、Repeater控件简介Repeater控件是一个容器控件,可用于从网页的任何可用数据中创建自定义列表。Repeater控件没有自己内置的呈现功能,这意味着
GridView自带的分页功能实现:要实现GrdView分页的功能操作如下:更改GrdView控件的AllowPaging属性为true。更改GrdView控件