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

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

    Adding it to the viewdata is the right thing to do. As for how to add it, you could always add a custom ActionFilter which grabs it from the route dictionary and pushes it into the viewdata.

提交回复
热议问题