Class TemplatePage<T>
Base class for EPiServer page templates that enables the quick navigator to get to the EPiServer UI.
Implements
IPageSource<T>
Inherited Members
Namespace: EPiServer
Assembly: EPiServer.dll
Version: 8.11.0Syntax
public class TemplatePage<T> : PageBase<T>, ICurrentPage, IContentSource, ISupportsScriptManager, IPageSource<T>, IPageSource, IRenderTemplate<T>, IRenderTemplate where T : PageData
Type Parameters
Name | Description |
---|---|
T |
Examples
The following example demonstrates how you would make a template page that uses a strongly typed model.
Constructors
TemplatePage()
Initializes a new instance of the TemplatePage class.
Declaration
public TemplatePage()
TemplatePage(Int32)
Initializes a new instance of the TemplatePage class.
Declaration
public TemplatePage(int options)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | options | The page options to enable. |
Remarks
The options parameter is a bitmap constructed from the OptionFlag of Page plugin classes from the EPiServer.Web.PageExtensions namespace.
TemplatePage(Int32, Int32)
Initializes a new instance of the TemplatePage class.
Declaration
public TemplatePage(int enable, int disable)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | enable | The page options to enable. |
System.Int32 | disable | The page options to disable. |
Remarks
The disable bitmap will override enabled options in case of conflicting options.