DetailsView.PageIndex Property

Definition

Gets or sets the index of the displayed record.

C#
[System.ComponentModel.Bindable(true)]
public virtual int PageIndex { get; set; }

Property Value

The zero-based index of the data item being displayed in a DetailsView control from the underlying data source.

Attributes

Exceptions

The selected value is less than -1.

Remarks

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also