在post方法之后从RedirectToAction重定向时如何通过URL传递#text

时间:2018-01-08 11:00:47

标签: asp.net-mvc

如何在post方法

之后从RedirectToAction重定向时传递带有URL的#text

我的网址:www.test.com/testController/testAction/15

我希望此网址为

www.test.com/testController/testAction/15#test

2 个答案:

答案 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");