TemplatePagerField.CreateDataPagers 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.
Creates the user interface (UI) controls for the pager field object and adds them to the specified container.
public:
override void CreateDataPagers(System::Web::UI::WebControls::DataPagerFieldItem ^ container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
public override void CreateDataPagers (System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
override this.CreateDataPagers : System.Web.UI.WebControls.DataPagerFieldItem * int * int * int * int -> unit
Public Overrides Sub CreateDataPagers (container As DataPagerFieldItem, startRowIndex As Integer, maximumRows As Integer, totalRowCount As Integer, fieldIndex As Integer)
Parameters
- container
- DataPagerFieldItem
The container that is used to store the controls.
- startRowIndex
- Int32
The index of the first record on the page.
- maximumRows
- Int32
The maximum number of items on a single page.
- totalRowCount
- Int32
The total number of items.
Remarks
The CreateDataPagers method is a helper method that is used by the DataPager.CreatePagerFields method. The CreateDataPagers method populates the DataPagerFieldItem object that is specified by the container
parameter with the child controls that are contained in the PagerTemplate template.