PagedDataSource.AllowServerPaging 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,指示是否启用服务器端分页。
public:
property bool AllowServerPaging { bool get(); void set(bool value); };
public bool AllowServerPaging { get; set; }
member this.AllowServerPaging : bool with get, set
Public Property AllowServerPaging As Boolean
属性值
如果启用服务器端分页,则为 true
;否则为 false
。
注解
ASP.NET 2.0 版数据绑定控件 (例如 GridView 、 DetailsView 和 FormView) 通过服务器端分页提供自动分页功能。 使用 ASP.NET 2.0 数据绑定控件时,请将此属性设置为 true
。
备注
服务器端分页和自定义分页互相排斥。 如果将设置 AllowServerPaging 为 true
,请确保将 AllowCustomPaging 设置为 false
。