Type mismatch: 'Base64EncMap' -- include_CuteEditor.asp, line 1874

  •  06-07-2010, 5:13 PM

    Type mismatch: 'Base64EncMap' -- include_CuteEditor.asp, line 1874

    I am getting this error:

    Microsoft VBScript runtime error '800a000d'
    Type mismatch: 'Base64EncMap'
    /webcontrol/cuteeditor_files/include_CuteEditor.asp, line 1874
     
     
    This is the test code that I used in our form:
     
            <%
                Dim editor
                Set editor = New CuteEditor
                editor.ID = "Editor1"
                editor.Text = "text here"
                editor.FilesPath  = "/webcontrol/cuteeditor_files/"
                editor.AutoConfigure = "Full"
                
                editor.EditorBodyStyle = "font:normal 12px arial;"
                editor.EditorWysiwygModeCss = "asp.css"
                editor.Draw()
                                                    
                ' Request.Form(ID) access from other page
            %>
     
    If I insert this code into a blank .asp page it works fine. However when I add it to our application form the above error occurs.
     
    The only thing I can think of that is different is that our application uses a subroutine to generate the form. The above code is inserted along with the form into the subroutine which is called by the main application page.
     
    Any help with this will be greatly appreciated as I am stuck on this one and can go no further until it is resolved.
     
    Thank you in advance for your help.
     
     
View Complete Thread