UserControl.InitializeAsUserControl(Page) Method

Definition

Initializes the UserControl object that has been created declaratively. Since there are some differences between pages and user controls, this method makes sure that the user control is initialized properly.

public void InitializeAsUserControl(System.Web.UI.Page page);

Parameters

page
Page

The Page object that contains the user control.

Examples

The following example calls the InitializeAsUserControl method during the Page_Init stage of request processing. In this case it is initialized from the page itself, but you could initialize it from another control and pass the ID property value of the containing page as the parameter for this method.


// Initialize the UserControl object that has been created declaratively. 
myControl.InitializeAsUserControl(this);

Applies to

Product Versions
.NET Framework 1.1, 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