<br/ /> in output causing xhtml to not validate

  •  01-10-2009, 7:16 PM

    <br/ /> in output causing xhtml to not validate

    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
            %>
View Complete Thread