FormView.InitializePager Method
.NET Framework 3.0
Creates the pager row for the FormView control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
protected: virtual void InitializePager ( FormViewRow^ row, PagedDataSource^ pagedDataSource )
protected void InitializePager ( FormViewRow row, PagedDataSource pagedDataSource )
protected function InitializePager ( row : FormViewRow, pagedDataSource : PagedDataSource )
Not applicable.
Parameters
- row
The FormViewRow that contains the pager row.
- pagedDataSource
A PagedDataSource that contains the data for the current page.
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.Community Additions
ADD
Show: