Creates a record for a portal page in the DB.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
PageEntity CreatePage(
	string url,
	string template
)
Visual Basic
Function CreatePage ( 
	url As String,
	template As String
) As PageEntity
Visual C++
PageEntity^ CreatePage(
	String^ url, 
	String^ template
)
F#
abstract CreatePage : 
        url : string * 
        template : string -> PageEntity 

Parameters

url
Type: System..::..String
Url for the new page
template
Type: System..::..String
Template name of the new page

Return Value

Type: PageEntity
PageEntity for the newly created page

See Also