Possible Duplicate:
How to get Url Hash (#) from server side
I'm having some trouble to get the hash value from a variable.
I'm using the default action in the AccountController
[HttpPost]
public ActionResult LogOn(LogOnModel model, string returnUrl) { ... }
but if I pass this link on:
http://localhost:1357/none/Account/LogOn?returnUrl=a/b/c#day-22
I can never catch the #day-22 value
below it's a breakpoint after the login:

I never get the hash value on the HttpContext.Request.Url object.
What can I do to forward the user to the correct URL with the hash part?
 
     
     
     
    