Double/incomplete Parameter Url Encoding - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T16:40:20Z http://stackoverflow.com/feeds/question/240224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding 6 Double/incomplete Parameter Url Encoding boris callens 2008-10-27T15:08:55Z 2008-12-24T18:48:43Z <p>In my web app, my parameters can contain all sorts of crazy characters (russian chars, slashes, spaces etc) and can therefor not always be represented as-is in a URL.<br /> Sending them on their merry way will work in about 50% of the cases. Some things like spaces are already encoded somewhere (I'm guessing in the Html.BuildUrlFromExpression does). Other things though (like "/" and "*") are not.</p> <p>Now I don't know what to do anymore because if I encode them myself, my encoding will get partially encoded again and end up wrong. If I don't encode them, some characters will not get through.</p> <p>What I did is manually .replace() the characters I had problems with.<br /> This is off course not a good idea.</p> <p>Ideas?</p> <p><strong>--Edit--</strong><br /> <strong>I know there are a multitude of encoding/decoding libraries at my disposal.</strong> It just looks like the mvc framework is already trying to do it for me, but not completely.</p> <pre><code>&lt;a href="&lt;%=Html.BuildUrlFromExpression&lt;SearchController&gt;(c=&gt;c.Search("", 1, "a \v/&amp;irdStr*ng"))%&gt;" title="my hat's awesome!"&gt; </code></pre> <p>will render me</p> <pre><code>&lt;a href="/Search.mvc/en/Search/1/a%20%5Cv/&amp;irdStr*ng" title="my hat's awesome!"&gt; </code></pre> <p>Notice how the forward slash, asterisk and ampersand are not escaped. Why are some escaped and others not? How can I now escape this properly?</p> <p>Am I doing something wrong or is it the framework?</p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/240245#240245 0 Answer by Mitchel Sellers for Double/incomplete Parameter Url Encoding Mitchel Sellers 2008-10-27T15:13:07Z 2008-10-27T15:13:07Z <p>Have you tried using the Server.UrlEncode() method to do the encoding, and the Server.UrlDecode() method to decode?</p> <p>I have not had any issues with using it for passing items.</p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/240247#240247 0 Answer by Cade Roux for Double/incomplete Parameter Url Encoding Cade Roux 2008-10-27T15:13:35Z 2008-10-27T16:16:52Z <p><a href="http://msdn.microsoft.com/en-us/library/ms525738.aspx" rel="nofollow">Server.URLEncode</a> or <a href="http://msdn.microsoft.com/en-us/library/zttxte6w.aspx" rel="nofollow">HttpServerUtility.UrlEncode</a> </p> <p>I see what you're saying now - I didn't realize the question was specific to MVC. Looks like a limitation of that part of the MVC framework - particularly BuildUrlFromExpression is doing some URL encoding, but it knows that also needs some of those punctation as part of the framework URLs.</p> <p>And also unfortunately, URLEncoding doesn't produce an invariant, i.e.</p> <p>URLEncode(x) != URLEncode(URLEncode(x))</p> <p>Wouldn't that be nice. Then you could pre-encode your variables and they wouldn't be double encoded.</p> <p>There's probably an ASP.NET MVC framework best practice for this. I guess another thing you could do is encode into base64 or something that is URLEncode-invariant.</p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/240261#240261 2 Answer by Marc Gravell for Double/incomplete Parameter Url Encoding Marc Gravell 2008-10-27T15:16:49Z 2008-10-27T15:16:49Z <p>Parameters should be escaped using <code>Uri.EscapeDataString</code>:</p> <pre><code> string url = string.Format("http://www.foo.bar/page?name={0}&amp;address={1}", Uri.EscapeDataString("adlknad /?? lkm#"), Uri.EscapeDataString(" qeio103 8182")); Console.WriteLine(url); Uri uri = new Uri(url); string[] options = uri.Query.Split('?','&amp;'); foreach (string option in options) { string[] parts = option.Split('='); if (parts.Length == 2) { Console.WriteLine("{0} = {1}",parts[0], Uri.UnescapeDataString(parts[1])); } } </code></pre> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/240271#240271 0 Answer by hmemcpy for Double/incomplete Parameter Url Encoding hmemcpy 2008-10-27T15:19:07Z 2008-10-27T15:19:07Z <p>Try using the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=EFB9C819-53FF-4F82-BFAF-E11625130C25&amp;displaylang=en" rel="nofollow">Microsoft Anti-Cross Site Scripting library</a>. It contains several Encode methods, which encode all the characters (including #, and characters in other languages). As for decoding, the browser should handle the encoded Url just fine, however if you need to manually decode the Url, use <a href="http://stackoverflow.com/questions/239567/decode-escaped-url-without-using-httputilityurldecode">Uri.UnescapeDataString</a></p> <p>Hope that helps.</p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/258262#258262 0 Answer by derigel for Double/incomplete Parameter Url Encoding derigel 2008-11-03T10:11:51Z 2008-11-03T10:11:51Z <p>Escaping of forward slahes and dots in path part of url is prohibited by security reason (althrough, it works in mono).</p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/380248#380248 0 Answer by Tracker1 for Double/incomplete Parameter Url Encoding Tracker1 2008-12-19T06:41:14Z 2008-12-19T06:41:14Z <p>Html.BuildUrlFromExpression needs to be fixed then, would submit this upstream to the MVC project... alternatively do the encoding to the string before passing to BuildUrlFromExpression, and decode it when it comes back out on the other side.</p> <p>It may not be readily fixable, as IIS may be handling the decoding of the url string beforehand... may need to do some more advanced encoding/decoding for alternative path characters in the utility methods, and decode on your behalf coming out. </p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/388463#388463 1 Answer by Ady for Double/incomplete Parameter Url Encoding Ady 2008-12-23T09:16:17Z 2008-12-23T09:16:17Z <p>AS others have mentioned, if you encode your string first you aviod the issue. </p> <p>The MVC Framework is encoding characters that it knows it needs to encode, but leaving those that are valid URL characters (e.g. &amp; % ? * /). This is because these are valid URL characters, although they are special chracters in a URL that might not acheive the result you are after.</p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/392026#392026 0 Answer by Frank Schwieterman for Double/incomplete Parameter Url Encoding Frank Schwieterman 2008-12-24T18:48:43Z 2008-12-24T18:48:43Z <p>I've seen similar posts on this. Too me, it looks like a flaw in MVC. The function would be more appropriately named "BuildUrlFromEncodedExpression". Whats worse, is that the called function needs to decode its input parameters. Yuk.</p> <p>If there is any overlap between the characters encoded BuildUrlFromExpression() and the characters encoded by the caller (who, I think might fairly just encode any non-alphanumeric for simplicities sake) then you have potential for nasty bugs.</p>