FormView.InitializePager(FormViewRow, PagedDataSource) Method

Definition

Creates the pager row for the FormView control.

protected:
 virtual void InitializePager(System::Web::UI::WebControls::FormViewRow ^ row, System::Web::UI::WebControls::PagedDataSource ^ pagedDataSource);
protected virtual void InitializePager (System.Web.UI.WebControls.FormViewRow row, System.Web.UI.WebControls.PagedDataSource pagedDataSource);
abstract member InitializePager : System.Web.UI.WebControls.FormViewRow * System.Web.UI.WebControls.PagedDataSource -> unit
override this.InitializePager : System.Web.UI.WebControls.FormViewRow * System.Web.UI.WebControls.PagedDataSource -> unit
Protected Overridable Sub InitializePager (row As FormViewRow, pagedDataSource As PagedDataSource)

Parameters

row
FormViewRow

The FormViewRow that contains the pager row.

pagedDataSource
PagedDataSource

A PagedDataSource that contains the data for the current page.

Remarks

The InitializePager method is a helper method called by the FormView control to create the pager row. It creates a TableCell object that contains the navigation controls using the properties of the PagedDataSource object contained in the pagedDataSource parameter. The cell is then added to the row specified by the row parameter.

Notes to Inheritors

When extending the FormView class, you can override this method to create your own pager row.

Applies to

See also