在ASP.NET中,使用PagedDataSource类对DataList控件实现每页记录数是5条的分页效果,下列说法正确的是( )。

admin2016-08-02  16

问题 在ASP.NET中,使用PagedDataSource类对DataList控件实现每页记录数是5条的分页效果,下列说法正确的是(    )。

选项 A、……
PagedDataSource pds = new PageDataSource();
…….
  pds.AllowCustomPaging = false;
  pds.PageSize = 5;
  pds.CurrentPageIndex = Convert.ToInt32(Request.QueryString[“Page”]);
……..
B、……
PagedDataSource pds = new PageDataSource();
…….
  pds.AllowCustomPaging = false;
  pds.PageCount = 5;
  pds.CurrentPageIndex = Convert.ToInt32(Request.QueryString[“Page”]);
……..
C、……
PagedDataSource pds = new PageDataSource();
…….
  pds.AllowCustomPaging = true;
  pds.PageSize = 5;
  pds.CurrentPageIndex = Convert.ToInt32(Request.QueryString[“Page”]);
……..
D、……
PagedDataSource pds = new PageDataSource();
…….
  pds.AllowCustomPaging = true;
  pds.Count = 5;
  pds.CurrentPageIndex = Convert.ToInt32(Request.QueryString[“Page”]);
……..

答案C

解析
转载请注明原文地址:https://kaotiyun.com/show/6QpD777K
0

最新回复(0)