30
我使用默認路由mvc2,如{controller}/{action}/{id}
。我想在我看來訪問那個id
字段。我怎麼能不用TempData
和ViewData
?在視圖中訪問路由值Mvc.net
如果我有一個url像 http://server-name/home/edit/14
我需要值"14"
在視圖中。
我使用默認路由mvc2,如{controller}/{action}/{id}
。我想在我看來訪問那個id
字段。我怎麼能不用TempData
和ViewData
?在視圖中訪問路由值Mvc.net
如果我有一個url像 http://server-name/home/edit/14
我需要值"14"
在視圖中。
您可以訪問使用ViewContext屬性路線數據:
<%= ViewContext.RouteData.Values["id"] %>