Getting Started
Basic Examples
Input and Output
UI Customization
Advanced Topics

Content management with templates

The basic idea behind a Content Management System (CMS) is to separate the management of content from design. Cute Editor allows the site designer to easily create and establish templates to give the site a uniform look. Templates may be modified when desired.




 Example Code

<%
          Dim editor
          Set editor = New CuteEditor
          editor.ID = "Editor1"
          editor.Text = "..."
          editor.LoadHTML("/Templates/template3.htm")
          editor.Draw()
 %>