I'm using ver 4. My app works except when I try to save alot of characters. If I paste in or type in more than around 2000 characters and hit the save button nothing happens. The form doesn't even post. Here is my code:
Dim editor
Set editor=New CuteEditor
editor.AutoConfigure="EnableAll"
editor.ID="Editor1"
editor. ShowHtmlMode = true
editor.FilesPath="cuteEditor/CuteEditor_Files"
editor.HelpUrl = "cuteEditor/CuteEditor_Files/Help"
editor.RemoveServerNamesFromUrl=True
editor.MaxHTMLLength= 2000000
editor.BreakElement = "p" 'p,br or "" for div
editor.Text=daText
editor.ParagraphsList = "Normal,Heading 1,Heading 2,Heading 3,Formatted,Definition Term"
editor.FontFacesList = "Arial,Verdana"
editor.ZoomsList="500%,200%,150%,125%,100%,25%"
editor.FontSizesList = "1,2,3,4,5,7"
editor.AllowPasteHtml=True
editor.AllowUpload = True
editor.ImageGalleryPath = "/ldcartstandard/uploads/images/category"
editor.MaxImageSize=50
editor.FlashPath= "/ldcartstandard/uploads/flash"
editor.DocumentPath = "/ldcartstandard/uploads/downloads"
editor.Draw()
Vince