UserControl.InitializeAsUserControl(Page) 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.
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);
public void InitializeAsUserControl (System.Web.UI.Page page);
member this.InitializeAsUserControl : System.Web.UI.Page -> unit
Public Sub InitializeAsUserControl (page As Page)
Parameters
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);
' Initialize the UserControl object that has been created declaratively.
myControl.InitializeAsUserControl(Me)