Stop URL Encoding

Last post 03-24-2009, 1:10 PM by Adam. 1 replies.
Sort Posts: Previous Next
  •  03-23-2009, 12:51 PM 50183

    Stop URL Encoding

    I've got a web page with a link like  this included:
     
    <A href="http://someplace.net/dosomething.asp?tid=900226&amp;eid={{~~eid~~}}&amp;sb_id={{~~sb_id~~}}" target=New><IMG height=274 alt=" width=" src="http://www.holacomoestas.com/artsheet/v2/1473141/header.gif" border=0></A></TD>
     
    When cuteEditor gets done with it, it becomes: 
     
    <a href="http://someplace.net/dosomething.asp?tid=900226&amp;eid=%7B%7B%7E%7Eeid%7E%7E%7D%7D&amp;sb_id=%7B%7B%7E%7Esb_id%7E%7E%7D%7D" target="New"><img alt=" width=" src="http://www.holacomoestas.com/artsheet/v2/1473141/header.gif" border="0" height="274" /></a>
     
    {{~~}} Stuff is place holder information that our App replace later on. It needs to stay in the format {{~~}. This didn't seem to be a problem till made the editor use absolute URLs.  Below are all the configuration changes that apply to the editor.
     
                MailingEditor.Setting["security:ImageGalleryPath"] = imageGalleryPath;
                MailingEditor.Setting["security:ImageBrowserPath"] = imageGalleryPath;
                MailingEditor.EnableStripStyleTagsCodeInjection = false;
                MailingEditor.EnableStripScriptTags = false;
                MailingEditor.EditCompleteDocument = true;
                MailingEditor.ConvertHTMLTagstoLowercase = false;
                MailingEditor.DisableAutoFormatting = true;
                MailingEditor.UseHTMLEntities = true;
                MailingEditor.URLType = CuteEditor.URLType.Absolute;
                MailingEditor.SetSecurityMaxImageSize(16384);
     
    I'm using Mac OS 10.5.6/FireFox 3.0.7
     
    Let me know what I can do to stop this behaviour.
     
    -Dillon
     
     
     
     
  •  03-24-2009, 1:10 PM 50224 in reply to 50183

    Re: Stop URL Encoding

    Dillion,
     
    Please set UseSimpleAmpersand to true.
     
     
    The other encodings are the browser behaviour.

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View as RSS news feed in XML