码迷,mamicode.com
首页 > 其他好文 > 详细

视图中访问 路由参数

时间:2014-09-03 12:44:06      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   div   cti   sp   

1.获取url中controller和action

第一种:

   获取controller名称:ViewContext.RouteData.Values["controller"]

   获取action名称:ViewContext.RouteData.Values["action"]

第二种:

   ViewContext.Controller.ValueProvider.GetValue("controller").RawValue

   ViewContext.Controller.ValueProvider.GetValue("action").RawValue

 

 

2.遍历路由参数集合

@{
    //路由参数 至少得的两个参数 为 
    //控制器名称和Action名称

    //controller-----RotateDataOne
    //action-----RotateOne

    RouteValueDictionary rotate = this.ViewContext.RouteData.Values;
    
    <p>遍历输出所有的键值:</p>
    
    foreach (var key in rotate.Keys)
    {
    <div>@key-----@rotate[key]</div>
    }
    
    
    <h3>如有记录的参数总数:@this.ViewContext.RouteData.Values.Count
    </h3>
}

 

视图中访问 路由参数

标签:style   blog   color   io   ar   for   div   cti   sp   

原文地址:http://www.cnblogs.com/tianmahygj/p/3953318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!