DetailsView.PageIndex Property
.NET Framework 3.0
Gets or sets the index of the displayed record.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[BindableAttribute(true)] public: virtual property int PageIndex { int get (); void set (int value); }
/** @property */ public int get_PageIndex () /** @property */ public void set_PageIndex (int value)
public function get PageIndex () : int public function set PageIndex (value : int)
Not applicable.
Property Value
The zero-based index of the data item being displayed in a DetailsView control from the underlying data source.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.
Community Additions
ADD
Show:
Note: