DataGrid.OnPageIndexChanged Method

Raises the PageIndexChanged event. This allows you to provide a custom handler for the event.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

protected:
virtual void OnPageIndexChanged (
	DataGridPageChangedEventArgs^ e
)
protected void OnPageIndexChanged (
	DataGridPageChangedEventArgs e
)
protected function OnPageIndexChanged (
	e : DataGridPageChangedEventArgs
)
Not applicable.

Parameters

e

A DataGridPageChangedEventArgs that contains event data.

Use the OnPageIndexChanged method to provide a custom handler for the PageIndexChanged event.

The PageIndexChanged event is raised when one of the page selection elements is clicked.

A typical handler for the PageIndexChanged event sets the CurrentPageIndex property to the index of the page you want to display and then uses the DataBind method to bind the data to the DataGrid control.

NoteNote:

The event handler receives a DataGridPageChangedEventArgs object as a parameter. You can use the NewPageIndex property of this parameter to determine the index of the page selected by the user from the page selection elements of the DataGrid control.

Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.

Notes to Inheritors: When overriding OnPageIndexChanged in a derived class, be sure to call the base class's OnPageIndexChanged method. For more information about handling events, see Consuming Events.

The following code example demonstrates how to specify and code a handler for the PageIndexChanged event. It displays pages on the DataGrid control in 10-item increments.

No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: