可能重复:
如何从服务器端获取 Url Hash (#)
我在从变量中获取哈希值时遇到了一些麻烦。
我正在使用默认操作AccountController
[HttpPost]
public ActionResult LogOn(LogOnModel model, string returnUrl) { ... }
但如果我通过这个链接:
http://localhost:1357/none/Account/LogOn?returnUrl=a/b/c#day-22
我永远无法抓住#day-22
价值
下面是登录后的断点:
我从来没有得到HttpContext.Request.Url
对象的哈希值。
我该怎么做才能将用户转发到带有哈希部分的正确 URL ?