TemplateRedirectionPage.ProcessRequest Method
Transfers execution to the page layout.
Namespace: Microsoft.SharePoint.Publishing
Assembly: Microsoft.SharePoint.Publishing (in Microsoft.SharePoint.Publishing.dll)
Syntax
'Declaration
Public Sub ProcessRequest ( _
context As HttpContext _
)
'Usage
Dim instance As TemplateRedirectionPage
Dim context As HttpContext
instance.ProcessRequest(context)
public void ProcessRequest(
HttpContext context
)
Parameters
context
Type: System.Web.HttpContextAn HttpContext object that represents the HTTP-specific information of the process request.
Implements
IHttpHandler.ProcessRequest(HttpContext)
Remarks
This method transfers execution to the page layout. It avoids calling all regular ASP.NET rendering stages for this instance, such as OnInit, OnLoad, OnRender. Instead, it loads a page instance of the associated page layout and calls its ProcessRequest method.