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 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.
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