DetailsView::PageIndexChanged Event
Occurs when the value of the PageIndex property changes after a paging operation.
Assembly: System.Web (in System.Web.dll)
The DetailsView control raises the PageIndexChanged event when a pager button (a button with its CommandName property set to "Page") within the control is clicked, but after the DetailsView control handles the paging operation. This allows you to provide an event handler that performs a custom routine whenever this event occurs.
Note |
|---|
This event is not raised when you programmatically set the PageIndex property. |
Pager buttons are usually located in the pager row of a DetailsView control. This event is often used to synchronize a DetailsView control with a GridView control or to set the behavior of the DetailsView control after a paging operation.
For more information about handling events, see NIB: Consuming Events.
The following code example demonstrates how to use the PageIndexChanged event to return the DetailsView to read-only mode when the user navigates to another record.
Available since 2.0
