在MVC的cshtml视图页获取默认路由下的ID值的方法

 <a href="/user/resume/index/11">
   <span class="title bold">我的 @Request.RequestContext.RouteData.Values["id"]</span>
 </a>

如上代码如果想取最后的ID值11,只要如下做就行了:

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

没有路由则直接用@Request.QueryString["id"]

posted @ 2015-09-06 11:46  James·wang  阅读(3180)  评论(1编辑  收藏  举报