DetailsView::PageIndex Property
Gets or sets the index of the displayed record.
Assembly: System.Web (in System.Web.dll)
[BindableAttribute(true)] public: virtual property int PageIndex { int get (); void set (int value); }
<asp:DetailsView PageIndex="Int32" />
Property Value
Type: System::Int32The zero-based index of the data item being displayed in a DetailsView control from the underlying data source.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The selected value is less than -1. |
When the paging feature is enabled (when the AllowPaging property is set to true), use the PageIndex property to determine the index of the currently displayed record. You can also use this property to programmatically change the displayed record.
Note |
|---|
When the paging feature is enabled, you can also use this property to determine the page number of the record displayed; however, be aware that this property is zero-based. |
To determine the total number of items in the data source, use the PageCount property.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note