Editor not editable

  •  02-28-2008, 4:41 PM

    Editor not editable

    Many of my editor boxes aren't editable at the moment.  It's sporadic.  If I refresh the page several times I can eventually get the editor working.  I am running the ASP version.  Here is the code I use to instantiate the object:
     
    <%
        content = gBody
        Dim editor
        Set editor = New CuteEditor

        editor.ID = "Body"
        editor.Text = content
        editor.FilesPath = "../CuteEditor_Files"
        editor.ImageGalleryPath = "/uploads/"
        'Body.Setting("security:ImageGalleryPath")= "/uploads"
        editor.MaxImageSize = 1000
        editor.AutoConfigure = "Simple"
        'editor.TemplateItemList = "Bold,Italic,Underline"
       
        editor.Width = 700
        editor.Height = 400
        editor.Draw()

        ' Request.Form(ID) access from other page
    %>
     
     
    Here is the INCLUDE line at the top of the page:
     
    <!-- #include file = "../CuteEditor_Files/include_CuteEditor.asp" -->
     
    I've checked the paths and they seem to be OK.

View Complete Thread