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

前端 未结 8 2141
半阙折子戏
半阙折子戏 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:44

    Simple Answer In Razor:

    @Url.RequestContext.RouteData.Values["id"]
    

    In ASP.NET Core

    @Url.ActionContext.RouteData.Values["id"]
    

提交回复
热议问题