DataPagerField.QueryStringHandled Propriedade
Definição
Obtém ou define um valor que indica se o campo da cadeia de consulta foi avaliado.Gets or sets a value that indicates whether the query string field has been evaluated.
protected:
property bool QueryStringHandled { bool get(); void set(bool value); };
protected bool QueryStringHandled { get; set; }
member this.QueryStringHandled : bool with get, set
Protected Property QueryStringHandled As Boolean
Valor da propriedade
true Se o campo de cadeia de caracteres de consulta foi avaliado; caso contrário, false .true if the query string field has been evaluated; otherwise, false.
Comentários
Os NumericPagerField NextPreviousPagerField campos e pager usam a QueryStringHandled propriedade para determinar se o campo de cadeia de caracteres de consulta foi avaliado.The NumericPagerField and NextPreviousPagerField pager fields use the QueryStringHandled property to determine whether the query string field has been evaluated. Se QueryStringHandled for false , a classe de campo de pager processará o número de página contido no campo de cadeia de caracteres de consulta.If QueryStringHandled is false, the pager field class processes the page number that is contained in the query string field. Ele também atualiza as propriedades de página do DataPager controle.It also updates the page properties of the DataPager control. A classe de campo de pager usa essa propriedade somente quando a QueryStringValue propriedade não é uma cadeia de caracteres vazia ou null .The pager field class uses this property only when the QueryStringValue property is not an empty string or null.