GridView.PageIndexChanging Event
Occurs when one of the pager buttons is clicked, but before the GridView control handles the paging operation.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
The PageIndexChanging event is raised when one of the pager buttons is clicked, but before the GridView control handles the paging operation. This enables you to provide an event-handling method that performs a custom routine, such as canceling the paging operation, whenever this event occurs.
Note |
|---|
This event is not raised when you programmatically set the PageIndex property. |
A GridViewPageEventArgs object is passed to the event-handling method, which enables you to determine the index of the page selected by the user and to indicate that the paging operation should be canceled. To cancel the paging operation, set the Cancel property of the GridViewPageEventArgs object to true.
For more information about handling events, see Consuming Events.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note