the autoformatting of html

  •  02-24-2006, 10:31 AM

    the autoformatting of html

    So I create a page and create an instance of the editor.  So far so good right?  Well I cut/paste my html code from a notepad document into the HTML tab of the cuteeditor , then when I save, all of the spaces in the html code between tags are converted into a non-breaking space ( ).  I'm using the following code to create it:
        Dim editor
        Set editor = New CuteEditor
        editor.ID = "objEditor"
        editor.FilesPath = "CuteEditor_Files"
        'editor.ImageGalleryPath = "../Images"
        editor.MaxImageSize = 50
        editor.AutoConfigure = "Simple"
        editor.DisableAutoFormatting = true
        editor.ConvertHTMLTagstoLowercase = false
        editor.UseHTMLEntities = false
        editor.EditCompleteDocument = true
        editor.EnableClientScript = true
        editor.UseFontTags = true
        editor.UseRelativeLinks = false
        editor.width="100%"
        editor.height="95%"

    What do you think I should do?  This is driving me insane and it's very important that the editor does not do this.  Thanks!

    Dave

View Complete Thread