Any idea why its writing <br/> like <br/ /> ?
Is this by design?
I am using:
CuteEditor for Classic ASP v6
Here is a sample output:
================
<div>This</div>
<div>is</div>
<div>a test<br/ />
</div>
================
I simply wrote each line and hit enter.
My Form code is:
=================
<%
Dim editor
Set editor = New CuteEditor
with editor
.ID = "scabio"
.Text = vSCABio
.XHTMLOutput = true
.ShowHtmlMode = false
.width="575"
.FilesPath = "CuteEditor_Files"
.ConfigurationPath = "/CuteEditor_Files/Configuration/myTools.config"
.ImageGalleryPath = "/memberpics"
.EditorBodyStyle = "font:normal 12px arial;"
.EditorWysiwygModeCss = "asp.css"
.Draw()
end with
%>