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);

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

产品 版本
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also