What's wrong with my url encoding? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T12:11:01Zhttp://stackoverflow.com/feeds/question/665354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding2What's wrong with my url encoding?boris callens2009-03-20T08:38:15Z2009-03-21T00:03:40Z
<p>In my asp.net mvc application I created the following link:</p>
<blockquote>
<p><a href="http://localhost:2689/en/Formula.mvc/351702++LYS+GRONN+5G+9%252f2++fds" rel="nofollow">http://localhost:2689/en/Formula.mvc/351702++LYS+GRONN+5G+9%252f2++fds</a> </p>
</blockquote>
<p>I get error 400 (bad request).</p>
<p>I think it blocks at the %25 (forward slash).<br />
What am I doing wrong?</p>
<p><strong>--EDIT 3--</strong><br />
I tried not encoding anything at all but rather rely on the default encoding of Url.RouteUrl().<br />
It seems that this doesn't encode the "/" for some reason.<br />
If I encode it myself first, I end up with the doubel encoded %252f. This gives me a bas request for some reason..
Why?!</p>
<p><strong>--EDIT 2--</strong><br />
I generated the last part of the URI as follows: </p>
<ol>
<li>Take the id.toString</li>
<li>Take the HttpUtility.UrlEncode(name)</li>
<li>Take the HttpUtility.UrlEncode(code)</li>
<li>String.Format("{0}--{1}--{2}") with the values from the previous parts</li>
<li>Add it as a parameter to Url.RouteUrl()</li>
</ol>
<p>After that my action gets this parameter again, splits it at -- and HttpUtility.Decode() the values back.</p>
<p>I do it this way because the two last parameters are optional, but functional parameters. IF they are defined in a previous step, they have to be carried along to the other pages.<br />
Less abstract: A color can have multiple names, but if a user selected it by a particular name, it should be kept throughout all the other pages.</p>
<p><strong>--EDIT 1--</strong><br />
It also looks like HttpUtility.UrlEncode() and Url.Encode() return different results :S </p>
<p>If I don't encode the "/", it acts as a separator=>no luck there.
If I encode it with Url.Encode() I end up with %2F => Code 400
If I encode it with HttpUtility.UrlEncode() I end up with %25 => code 400</p>
<p>Because 400 doesn't even let it through to asp.net-mvc, the route debugger is of no use :(</p>
http://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding/665363#6653630Answer by Jonathan Parker for What's wrong with my url encoding?Jonathan Parker2009-03-20T08:44:17Z2009-03-20T08:44:17Z<p>Have you run the Routing debugger: <a href="http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx" rel="nofollow">http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx</a></p>
http://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding/665364#6653640Answer by Marc Gravell for What's wrong with my url encoding?Marc Gravell2009-03-20T08:45:48Z2009-03-20T08:45:48Z<p>I haven't looked too much at the encoding - but note that if this is to be <em>stored</em> somewhere (or acted upon in some way), then a POST would be more appropriate. If the text on the right is actually representative of the data with id 351702 (a vanity url, much like <code>/665354/whats-wrong-with-my-url-encoding</code>), then you should humanize the text. Much as the spaces have been removed from the above. It is also common to have this as a separate level in the route that is simply discarded.</p>
<p>Generally, MVC urls should be comprehensible.</p>
http://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding/665381#6653810Answer by vartec for What's wrong with my url encoding?vartec2009-03-20T08:53:57Z2009-03-20T08:53:57Z<p><code>%25</code> is actually encoded "%", so <code>%252f</code> is encoded "%2f".</p>
<p><code>%2f</code> (encoded "/") is not allowed in URL unless you explicitly allow it in webserver's configuration. </p>
http://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding/665391#6653910Answer by Khaja Minhajuddin for What's wrong with my url encoding?Khaja Minhajuddin2009-03-20T08:58:49Z2009-03-20T09:16:47Z<p>You can't use a forward slash as a value in the URL. Here is a nice post about creating browser and SEO friendly URLS => <a href="http://www.dominicpettifer.co.uk/displayBlog.aspx?id=34" rel="nofollow">http://www.dominicpettifer.co.uk/displayBlog.aspx?id=34</a></p>
<p>[Edit]
Whenever you create a route you associate it with a URL pattern (The default pattern is {controller}/{action}/{id}). And in this url pattern you are supposed to use the forward slash to separate different tokens. Hope that helps</p>
http://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding/665414#6654140Answer by Jonathan Parker for What's wrong with my url encoding?Jonathan Parker2009-03-20T09:06:44Z2009-03-20T09:06:44Z<p>W3Schools works fine: <a href="http://www.w3schools.com/TAGS/html_form_submit.asp?text=hello/world" rel="nofollow">http://www.w3schools.com/TAGS/html_form_submit.asp?text=hello/world</a></p>
<p>Here's the URL encoding reference: <a href="http://www.w3schools.com/TAGS/ref_urlencode.asp" rel="nofollow">http://www.w3schools.com/TAGS/ref_urlencode.asp</a></p>
http://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding/668421#6684211Answer by Mathias Fritsch for What's wrong with my url encoding?Mathias Fritsch2009-03-21T00:03:40Z2009-03-21T00:03:40Z<p>I was there a couple of days ago. If you can accept unreadable route-values in the URL try this:
<a href="http://stackoverflow.com/questions/591694/url-encoded-slash-in-url">http://stackoverflow.com/questions/591694/url-encoded-slash-in-url</a></p>