PagedDataSource.AllowServerPaging Propriedade

Definição

Obtém ou define um valor que indica se a paginação d lado do servidor está habilitada.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

Valor da propriedade

Boolean

true se a paginação do lado do servidor estiver habilitada; caso contrário, false.true if server-side paging is enabled; otherwise, false.

Comentários

Os controles associados a dados da versão 2,0 do ASP.NET (como GridView , DetailsView e FormView ) fornecem funcionalidade de paginação automática por meio de paginação do servidor.ASP.NET version 2.0 data-bound controls (such as GridView, DetailsView, and FormView) provide automatic paging functionality through server-side paging. Ao usar um controle associado a dados do ASP.NET 2,0, defina essa propriedade como true .When using an ASP.NET 2.0 data-bound control, set this property to true.

Observação

A paginação de servidor e a paginação personalizada são mutuamente exclusivas.Server-side paging and custom paging are mutually exclusive. Se você definir AllowServerPaging como true , certifique-se de que AllowCustomPaging está definido como false .If you set AllowServerPaging to true, be sure that AllowCustomPaging is set to false.

Aplica-se a

Confira também