not having to encode url - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T16:31:36Z http://stackoverflow.com/feeds/question/770290 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/770290/not-having-to-encode-url 0 not having to encode url codette 2009-04-20T22:02:10Z 2009-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#770343 3 Answer by tentonipete for not having to encode url tentonipete 2009-04-20T22:17:12Z 2009-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>