Re: Span tag appears inside of link tag

  •  02-22-2008, 8:39 AM

    Re: Span tag appears inside of link tag

    Hi Adam,
     
    I have made a page with only an instance of cute editor on it (straight out of the download package, with the license copied over) and the issue still persists. Here is the code for the entire page:
     
    <!-- #include file="CuteEditor"CuteEditor_Files"include_CuteEditor.asp" -->

    <%
                    Dim objRichEdit
                    Set objRichEdit = New CuteEditor
                    objRichEdit.ID = "richedit"
                    objRichEdit.FilesPath = "CuteEditor/CuteEditor_Files"
                    objRichEdit.EditorBodyStyle = "font:normal 12px arial;"
                    objRichEdit.EditorWysiwygModeCss = "stylesheet-RE.css"
                    objRichEdit.ThemeType="OfficeXp"

                    objRichEdit.CssClassStyleDropDownMenuNames = "bodyText,bodySmall,bodyHead,bodyHead2,bodyHead3"
                    objRichEdit.CssClassStyleDropDownMenuList = "bodyCopy,bodysmall,bodyHead,bodyHead2,bodyHead3"

                    objRichEdit.BreakElement = "P"
                    objRichEdit.EditorOnPaste = "PasteCleanHTML"
                    objRichEdit.MaxHTMLLength = ( 80 * 1024 )
                    objRichEdit.Height = "480"
                    objRichEdit.Width = "640"

                    objRichEdit.Draw()
    %>
View Complete Thread