在视图Mvc.net中访问路由值

时间:2010-07-01 09:41:29

标签: asp.net asp.net-mvc

我使用mvc2的默认路由,如{controller}/{action}/{id}。我想在我的视图中访问该id字段。如果不使用TempDataViewData

,我该怎么做呢?

如果我有一个网址 http://server-name/home/edit/14 我在视图中需要值"14"

1 个答案:

答案 0 :(得分:53)

您可以使用ViewContext属性访问路径数据:

<%= ViewContext.RouteData.Values["id"] %>