如何在post方法
之后从RedirectToAction
重定向时传递带有URL的#text
我的网址:www.test.com/testController/testAction/15
我希望此网址为
www.test.com/testController/testAction/15#test
答案 0 :(得分:0)
您可以在MVC
中使用Redirect
return Redirect("~/testController/testAction?id=15#test");
我希望这对你有用。
答案 1 :(得分:0)
使用此RedirectResult
return new RedirectResult(Url.Action("testAction", "testController", new { id = 15 }) +"#Text");