PagedDataSource.AllowServerPaging Property

Definition

Gets or sets a value indicating whether server-side paging is enabled.

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

Property Value

true if server-side paging is enabled; otherwise, false.

Remarks

ASP.NET version 2.0 data-bound controls (such as GridView, DetailsView, and FormView) provide automatic paging functionality through server-side paging. When using an ASP.NET 2.0 data-bound control, set this property to true.

Note

Server-side paging and custom paging are mutually exclusive. If you set AllowServerPaging to true, be sure that AllowCustomPaging is set to false.

Applies to

See also