System.Web.UI.Page Class

Represents an .aspx file, also known as a Web Forms page, requested from a server that hosts an ASP.NET Web application.

See Also: Page Members

Syntax

[System.ComponentModel.Designer("Microsoft.VisualStudio.Web.WebForms.WebFormDesigner, Microsoft.VisualStudio.Web, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.Design.IRootDesigner))]
[System.ComponentModel.ToolboxItem(false)]
[System.ComponentModel.DesignerCategory("ASPXCodeBehind")]
[System.ComponentModel.DefaultEvent("Load")]
public class Page : TemplateControl, System.Web.IHttpHandler

Remarks

The System.Web.UI.Page class is associated with files that have an .aspx extension. These files are compiled at run time as System.Web.UI.Page objects and cached in server memory.

If you want to create a Web Forms page using the code-behind technique, derive from this class. Rapid application development (RAD) designers, such as Microsoft Visual Studio, automatically use this model to create Web Forms pages.

The System.Web.UI.Page object serves as the naming container for all server controls in a page, except those that implement the System.Web.UI.INamingContainer interface or are child controls of controls that implement this interface.

The System.Web.UI.Page class is a control that acts as the user interface for your Web application, and as such should be scrutinized to make sure best practices for writing secure code and securing applications are followed. For general information on these topics, see Overview of Web Application Security Threats, Security Policy Best Practices, and Key Security Concepts. For more specific information, see Securing Standard Controls, How to: Display Safe Error Messages, How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings, and Introduction to the Validation Controls.

Requirements

Namespace: System.Web.UI
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0