NumericPagerField.HandleEvent(CommandEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Handles events that occur in the NumericPagerField object and performs the appropriate action.
public:
override void HandleEvent(System::Web::UI::WebControls::CommandEventArgs ^ e);
public override void HandleEvent (System.Web.UI.WebControls.CommandEventArgs e);
override this.HandleEvent : System.Web.UI.WebControls.CommandEventArgs -> unit
Public Overrides Sub HandleEvent (e As CommandEventArgs)
Parameters
The event data.
Remarks
The HandleEvent method is a helper method. It is used by the DataPager.OnBubbleEvent method to handle events that occur in the NumericPagerField object when one of the buttons inside the control is clicked.
The HandleEvent method examines the CommandName property of the CommandEventArgs object that is contained in the e
parameter, and then performs the appropriate action.
The following table lists the buttons provided by the NumericPagerField object and the action that is performed when the button is clicked.
Button | CommandName value | Action |
---|---|---|
Number | Page number | Navigates to the corresponding page of data. |
Previous page | DataControlCommands.PreviousPageCommandArgument | Displays the previous set of page numbers and navigates to the last page of data in that set. |
Next page | DataControlCommands.NextPageCommandArgument | Displays the previous set of page numbers and navigates to the first page of data in that set. |