How to get the current route ID within a View from the URL (ASP.NET MVC)

前端 未结 8 1966
半阙折子戏
半阙折子戏 2021-01-30 02:27

Within the view that is returned from a URL such as /Controller/Action/1 (assuming the default route of controller/action/id), how can I get access to the ID from within the Vie

8条回答
  •  庸人自扰
    2021-01-30 02:48

    I think you can direct use in url action Url.RequestContext.RouteData.Values["id"]

提交回复
热议问题