not having to encode url - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T16:31:36Zhttp://stackoverflow.com/feeds/question/770290http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770290/not-having-to-encode-url0not having to encode urlcodette2009-04-20T22:02:10Z2009-04-20T22:17:12Z
<p>Say I have this url "/my#stuff"</p>
<p>I am using asp.net mvc and when I try to goto this page it takes me to just "/my". The "#stuff" part has been removed.</p>
<p>Now I can get it to work fine if I encode the URL like so "/my%23stuff" since %23 decodes to #</p>
<p>However, is there a way I can get this to work without having to encode the url?</p>
<p>I'd like it if typing in "/my#stuff" as the URL worked just the same as "my%23stuff"</p>
http://stackoverflow.com/questions/770290/not-having-to-encode-url/770343#7703433Answer by tentonipete for not having to encode urltentonipete2009-04-20T22:17:12Z2009-04-20T22:17:12Z<p>I don't think there is a way to do what you are saying. The hash is used in a URL for anchor tags.</p>
<p>You are pointing at a page /my and navigating to anchor tag "stuff" on that page. If anchor tag "stuff" does not exist it will just navigate to page /my.</p>