DetailsView.InitializePager(DetailsViewRow, PagedDataSource) 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 pager row for the DetailsView control.
protected:
virtual void InitializePager(System::Web::UI::WebControls::DetailsViewRow ^ row, System::Web::UI::WebControls::PagedDataSource ^ pagedDataSource);
protected virtual void InitializePager (System.Web.UI.WebControls.DetailsViewRow row, System.Web.UI.WebControls.PagedDataSource pagedDataSource);
abstract member InitializePager : System.Web.UI.WebControls.DetailsViewRow * System.Web.UI.WebControls.PagedDataSource -> unit
override this.InitializePager : System.Web.UI.WebControls.DetailsViewRow * System.Web.UI.WebControls.PagedDataSource -> unit
Protected Overridable Sub InitializePager (row As DetailsViewRow, pagedDataSource As PagedDataSource)
Parameters
- row
- DetailsViewRow
The DetailsViewRow 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 DetailsView 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 DetailsView class, you can override this method to create your own pager row.