This documentation is archived and is not being maintained.

UserControl.InitializeAsUserControl Method

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.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)

public void InitializeAsUserControl(
	Page page
)

Parameters

page
Type: System.Web.UI.Page

The Page object that contains the user control.

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

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Show: