Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for ASP
»
Re: editor defaulting to <br> instead of <p>
Re: editor defaulting to <br> instead of <p>
09-20-2005, 4:02 PM
DanT_MMC
Joined on 09-20-2005
Posts 4
Re: editor defaulting to <br> instead of <p>
Reply
Quote
That doesn't seem to have changed the default behavior. When I type something in and press Enter, it still inserts a <br> and goes to the next line. I've pasted the script below for your viewing pleasure. Is there something I'm missing? Thanks again.
Dan
<%
dim content
content = " "
Dim editor
Set editor = New CuteEditor
editor.ID = "overview"
editor.Text = content
editor.FilesPath = "CuteEditor_Files"
editor.DocumentPath= "/pdf"
editor.ImageGalleryPath = "/images/uploaded"
editor.MaxImageSize = 150
editor.BreakElement = "p"
editor.AutoConfigure = "cows"
editor.ThemeType = "office2003"
editor.Width = 600
editor.Height = 600
editor.Draw()
%>
View Complete Thread