About 3,410,000 results
Open links in new tab
  1. .net - URL Encoding using C# - Stack Overflow

    This is dangerous: not all character of the url have to be encoded, only the values of parameters of querystring. The way you suggest will encode also the & that is needed to create multiple …

  2. URL encoding the space character: + or %20? - Stack Overflow

    Oct 27, 2009 · From Wikipedia (emphasis and link added): When data that has been entered into HTML forms is submitted, the form field names and values are encoded and sent to the server …

  3. How to urlencode a querystring in Python? - Stack Overflow

    Oct 22, 2015 · Context Python (version 2.7.2 ) Problem You want to generate a urlencoded query string. You have a dictionary or object containing the name-value pairs. You want to be able to …

  4. Encode URL in JavaScript - Stack Overflow

    Dec 2, 2008 · A URL encoded this way will no longer work as a URL without unescaping it. So if you can take the time, you always want to use encodeURIComponent () -- before adding on …

  5. How to achieve Base64 URL safe encoding in C#? - Stack Overflow

    Sep 29, 2015 · I want to achieve Base64 URL safe encoding in C#. In Java, we have the common Codec library which gives me an URL safe encoded string. How can I achieve the same using …

  6. bash - How to urlencode data for curl command? - Stack Overflow

    Nov 18, 2008 · I am trying to write a bash script for testing that takes a parameter and sends it through curl to web site. I need to url encode the value to make sure that special characters …

  7. encoding - How to URL encode strings in C# - Stack Overflow

    This string is UTF-8 URL encoded. My API client is written in asp.net C# where as the API host is probably written in Java. When I have characters like parenthesis/brackets () in the string …

  8. How do I URl encode something in Node.js? - Stack Overflow

    Jul 1, 2011 · I want to URL encode this: SELECT name FROM user WHERE uid = me() Do I have to download a module for this? I already have the request module.

  9. url - java.net.URLEncoder.encode (String) is deprecated, what …

    I get the following warning when using java.net.URLEncoder.encode: warning: [deprecation] encode (java.lang.String) in java.net.URLEncoder has been deprecated What should I be …

  10. URL encoding in Android - Stack Overflow

    You can see that in this particular URL, I need to have those spaces encoded so that I can use it for a request. This takes advantage of a couple features available to you in Android classes.