Double/incomplete Parameter Url Encoding - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T16:40:20Zhttp://stackoverflow.com/feeds/question/240224http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding6Double/incomplete Parameter Url Encodingboris callens2008-10-27T15:08:55Z2008-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><a href="<%=Html.BuildUrlFromExpression<SearchController>(c=>c.Search("", 1, "a \v/&irdStr*ng"))%>" title="my hat's awesome!">
</code></pre>
<p>will render me</p>
<pre><code><a href="/Search.mvc/en/Search/1/a%20%5Cv/&irdStr*ng" title="my hat's awesome!">
</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#2402450Answer by Mitchel Sellers for Double/incomplete Parameter Url EncodingMitchel Sellers2008-10-27T15:13:07Z2008-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#2402470Answer by Cade Roux for Double/incomplete Parameter Url EncodingCade Roux2008-10-27T15:13:35Z2008-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#2402612Answer by Marc Gravell for Double/incomplete Parameter Url EncodingMarc Gravell2008-10-27T15:16:49Z2008-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}&address={1}",
Uri.EscapeDataString("adlknad /?? lkm#"),
Uri.EscapeDataString(" qeio103 8182"));
Console.WriteLine(url);
Uri uri = new Uri(url);
string[] options = uri.Query.Split('?','&');
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#2402710Answer by hmemcpy for Double/incomplete Parameter Url Encodinghmemcpy2008-10-27T15:19:07Z2008-10-27T15:19:07Z<p>Try using the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=EFB9C819-53FF-4F82-BFAF-E11625130C25&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#2582620Answer by derigel for Double/incomplete Parameter Url Encodingderigel2008-11-03T10:11:51Z2008-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#3802480Answer by Tracker1 for Double/incomplete Parameter Url EncodingTracker12008-12-19T06:41:14Z2008-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#3884631Answer by Ady for Double/incomplete Parameter Url EncodingAdy2008-12-23T09:16:17Z2008-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. & % ? * /). 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#3920260Answer by Frank Schwieterman for Double/incomplete Parameter Url EncodingFrank Schwieterman2008-12-24T18:48:43Z2008-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>