我想通过属性路由在控制器中请求后使用正确的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
}
感谢您的帮助!