Page.FrameworkInitialize Method

Definition

Initializes the control tree during page generation based on the declarative nature of the page.

protected:
 override void FrameworkInitialize();
protected override void FrameworkInitialize ();
override this.FrameworkInitialize : unit -> unit
Protected Overrides Sub FrameworkInitialize ()

Remarks

The FrameworkInitialize method initializes the Page object and creates the control tree based on the declarative nature of the page. The FrameworkInitialize method is overridden by the page parsing and code generation for the Page class for a declarative page. Ordinarily, you should not over need to override this method. If overriding, be sure to call the base class's FrameworkInitialize method.

Applies to

See also