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

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

    I think this is what you're looking for:

    <%=Url.RequestContext.RouteData.Values["id"]%>
    

提交回复
热议问题