This documentation is archived and is not being maintained.

DataPagerCommandEventArgs Class

Provides data for the PagerCommand event of the TemplatePagerField class.

System::Object
  System::EventArgs
    System.Web.UI.WebControls::CommandEventArgs
      System.Web.UI.WebControls::DataPagerCommandEventArgs

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

public ref class DataPagerCommandEventArgs : public CommandEventArgs

The DataPagerCommandEventArgs type exposes the following members.

  NameDescription
Public methodDataPagerCommandEventArgsInitializes a new instance of the DataPagerCommandEventArgs class.
Top

  NameDescription
Public propertyCommandArgumentGets the argument for the command. (Inherited from CommandEventArgs.)
Public propertyCommandNameGets the name of the command. (Inherited from CommandEventArgs.)
Public propertyItemGets the DataPagerFieldItem object that contains the DataPagerField object and the DataPagerField object's container DataPager object.
Public propertyNewMaximumRowsGets or sets the maximum number of records to display on each page of data.
Public propertyNewStartRowIndexGets or sets the index of the first record to display on a page of data.
Public propertyPagerFieldGets the DataPagerField object that contains the button that was clicked.
Public propertyTotalRowCountGets the total number of records to display.
Top

  NameDescription
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top

The TemplatePagerField object raises the PagerCommand event when a Button, LinkButton, or ImageButton control that is inside the pager field is clicked. These buttons are child controls that can be defined in the PagerTemplate template of a TemplatePagerField field.

During the event, you can perform tasks such as changing the number of rows that will be displayed or changing the index of the first item on the page.

For more information about how to handle events, see Consuming Events.

For a list of initial property values for an instance of the DataPagerCommandEventArgs class, see the DataPagerCommandEventArgs constructor.

The following example shows how to use the DataPagerCommandEventArgs object to enable the user to specify which page of data will be displayed in the ListView control. The DataPagerCommandEventArgs object is passed to the handler for the PagerCommand event of the TemplatePagerField class.

Security noteSecurity Note

This example contains a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview.

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

.NET Framework

Supported in: 4, 3.5

Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show: