Difference between revisions of "URL Encoding"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 1: Line 1:
{{Note|When specifying a URL in code, any ''special characters'' (anything other than a character or space) need to be encoded.<br>
{{Note|<br>When specifying a URL in code, any ''special characters'' (anything other than a character or space) need to be encoded.<br>
''Learn more:''  
''Learn more:''  
:* [http://www.w3schools.com/tags/ref_urlencode.asp URL Encoding] in HTML
:* [http://www.w3schools.com/tags/ref_urlencode.asp URL Encoding] in HTML
:* [http://www.javascripter.net/faq/escape.htm Encode a URL] in JavaScript
:* [http://www.javascripter.net/faq/escape.htm Encode a URL] in JavaScript
:* [http://docs.oracle.com/javase/6/docs/api/java/net/URLEncoder.html URLEncoder] class for Java}}
:* [http://docs.oracle.com/javase/6/docs/api/java/net/URLEncoder.html URLEncoder] class for Java}}

Revision as of 22:20, 1 February 2012

Notepad.png

Note:
When specifying a URL in code, any special characters (anything other than a character or space) need to be encoded.
Learn more: