AI OnAI Off
I found a way to do it.
Aspx page:
<EPiServer:Property PropertyName="_Editor" id="ctlHtmlEditor" EditMode="true" runat="server" />
Codebehind:
protected EPiServer.WebControls.Property ctlHtmlEditor;
onInitPropertyXhtmlString oEditor = new PropertyXhtmlString();
oEditor.Name="_Editor";
oEditor.EditorSettings=EPiServer.SystemControls.EditorOption.All;
CurrentPage.Property.Add(oEditor);
On postbackstring sHtml = ctlHtmlEditor.PropertyValue as String;
Hi,
I'm creating a custom property. The property opens a new window and in that aspx page I would like to use some episerver properties and save the values from the properties to an xml string.
My plan was to inherit from simplepage and by code add new properties.