How do i get the url part after a "#" from HttpRequestBase
asp.net-mvc
Solution
You can't, it doesn't get sent to the server.
Problem
i am receiving GET requests like this http://localhost/controller/List#SearchGuid=755d259d-e7c9-4c5a-bf2a-69f65f63df8d and i need to read the SearchGuid which is after the #. unfortunately the HttpRequestBase seems the hide everything past a #. does somebody know how i could still read the SearchGuid from within the controller action? tia.