DataSourceSelectArguments.RetrieveTotalRowCount Property
Assembly: System.Web (in system.web.dll)
/** @property */ public boolean get_RetrieveTotalRowCount () /** @property */ public void set_RetrieveTotalRowCount (boolean value)
public function get RetrieveTotalRowCount () : boolean public function set RetrieveTotalRowCount (value : boolean)
Not applicable.
Property Value
true if the data source control should retrieve a total data row count; otherwise, false.The RetrieveTotalRowCount property supports paging scenarios. Set this property to true to request a total row count from the data source control during the data-retrieval operation. Check the DataSourceView.CanRetrieveTotalRowCount property to determine whether a data source view supports retrieving a total row count. If the data source supports it, the TotalRowCount property is set by the data source control during the course of a data retrieval operation and the total data row count is returned in the TotalRowCount property, much as a value is returned in an output parameter of a method.
Important: |
|---|
|
If any of the DataSourceSelectArguments properties are set, but the currently bound data source control does not support the requested capability, an InvalidOperationException exception is thrown when the DataSourceSelectArguments.RaiseUnsupportedCapabilitiesError method is called. |
Important: