Re: Editor does not allow for •, automatically modifies my HTML code.. can this be disabled?

  •  06-23-2010, 11:37 AM

    Re: Editor does not allow for •, automatically modifies my HTML code.. can this be disabled?

    Please try the following code,
    <%    
       Dim editor
       Set editor = New CuteEditor
       editor.ID = "Editor1"    
       editor.UseSimpleAmpersand=true
       If request.QueryString("postback") <> "true" then
        editor.Draw()
       else
        editor.SaveFile("document.html")
        editor.Draw()
       End if             
       ' Request.Form(ID) access from other page
      %>
     
    Regards,
     
    Eric
View Complete Thread