DataSourceSelectArguments.StartRowIndex Property
Assembly: System.Web (in system.web.dll)
/** @property */ public int get_StartRowIndex () /** @property */ public void set_StartRowIndex (int value)
public function get StartRowIndex () : int public function set StartRowIndex (value : int)
Not applicable.
Property Value
The starting row position from which a data source control retrieves data. The default value is 0, which indicates that the starting position is the beginning of the result set.The StartRowIndex property supports paging scenarios. Data-bound controls check a data source view's CanPage property at run time, and add a DataSourceCapabilities.Page capability using the AddSupportedCapabilities method if the view supports paging. If the data-bound control fails to add the capability, and the paging properties are set on a DataSourceSelectArguments object passed to the data source view during a data retrieval operation, an InvalidOperationException exception might be thrown.
As a separate operation, the data-bound control can request a subset of data from a data source control by setting the StartRowIndex and MaximumRows properties on the DataSourceSelectArguments object passed to the DataSourceView.Select method.