I have tried this but get error:
Microsoft VBScript runtime error
'800a01b6'
Object doesn't support this property or method:
'editor.EditorOnPaste'
Here is code:
<%
If len(ArticleText)<1 then
content = "Skriv tekst her"
else
content = ArticleText
end if
Set editor = New CuteEditor
editor.ID = "Text"
editor.Culture = "da-DK"
editor.Text = content
editor.FilesPath = "/CuteEditor/CuteEditor_Files"
editor.ImageGalleryPath = "/data/adminimg"
editor.DocumentPath= "/data/adminfiles"
editor.mediapath= "/data/adminfiles"
editor.EditorWysiwygModeCss = "asp.css"
editor.MaxImageSize = 100
editor.EditorOnPaste = "ConfirmWord"
editor.Width = "410px"
editor.Height = "300px"
editor.ThemeType="OfficeXP"
editor.AutoConfigure = "jagooarticle"
editor.Draw()
%>