ASP.NET MVC中的返回视图的Url

时间:2021-01-27 03:27:05

In the context of this question link text is possible from a Controller that responds to a Form Post to go to the Friendly Url?

在此问题的上下文中,链接文本可以从响应表单帖子的Controller转到友好URL?

1 个解决方案

#1


Yes. Your controller action can determine the friendly url based on how you would like the route defined for it, then do a Redirect to the friendly url instead of returning the view. It will cause another browser request which will add load to to your server, so you'd want to be sure that it was really important.

是。您的控制器操作可以根据您为其定义的路径的方式确定友好URL,然后重定向到友好URL而不是返回视图。它会导致另一个浏览器请求,它会为您的服务器增加负载,因此您需要确保它非常重要。

#1


Yes. Your controller action can determine the friendly url based on how you would like the route defined for it, then do a Redirect to the friendly url instead of returning the view. It will cause another browser request which will add load to to your server, so you'd want to be sure that it was really important.

是。您的控制器操作可以根据您为其定义的路径的方式确定友好URL,然后重定向到友好URL而不是返回视图。它会导致另一个浏览器请求,它会为您的服务器增加负载,因此您需要确保它非常重要。