我想使用RedirectToRouteResult
重定向到像/ users / 4#
摘要这样的网址.使用ASP.NET MVC 1.0,我无法找到一种方式来做 – 我错过了吗?
您应该在路由表中正确构建路由.例如.:
routes.MapRoute("MyRoute","{controler}/{id}#{detail}",new { controller = "users",action = "index",id = (string)null,detail = "Summary" });
原文链接:https://www.f2er.com/aspnet/246755.html