ASP NET MVC 5重命名正确的URL

时间:2017-06-22 17:12:00

标签: c# asp.net-mvc asp.net-mvc-5

我想通过属性路由在控制器中请求后使用正确的url更改页面中的url。我该怎么办?

例如,我在地图路线中有一个正确的网址:localhost / blog / 5 / nameblog 如果我磁带:localhost / blog / 5 / blabla,我想在正确的url localhost / blog / 5 / nameblog中 diplay并重命名,一旦在id中找到了博客ID和他的名字5:

[Route("{blog}/{Idblog}/{nameblog}")]
public ActionResult GetBlogById(int Idblog)
{
   // search the name blog with ID in database
   .....
   return View() // i want to display the correct url after the request
}

感谢您的帮助!

0 个答案:

没有答案