ASP.NET MVC3中的ViewBag动态性

在MVC 3中的有一个新的ViewBag 动态特性,它主要是为了从Controller到view进行传值用的,类似有所使用的ViewData[] 字典类。对于ViewBag是如此的强大,意味着你能动态的set/get  值,增加任何数量的的额外字段而不需要强类型的检测。

为了看这些的不同(和不用viewbag的时候),我们来看看一下的实例:

Eample:--using ViewBag

Controller

 

view plaincopy to clipboardprint?
  1. public ActionResult Index()    
  2.   
  3.  {    
  4.   
  5.      List<string> colors = new List<string>();    
  6.   
  7.      colors.Add("red");    
  8.   
  9.      colors.Add("green");    
  10.   
  11.      colors.Add("blue");                
  12.   
  13.       
  14.   
  15.     ViewData["listColors"] = colors;    
  16.   
  17.      ViewData["dateNow"] = DateTime.Now;    
  18.   
  19.      ViewData["name"] = "Hajan";    
  20.   
  21.      ViewData["age"] = 25;    
  22.   
  23.       
  24.   
  25.     return View();    
  26.   
  27.  }   

View (ASPX View Engine)

view plaincopy to clipboardprint?
  1. p>    
  2.   
  3. 02      My name is    
  4.   
  5. 03     <b><%: ViewData["name"] %></b>,     
  6.   
  7. 04     <b><%: ViewData["age"] %></b> years old.    
  8.   
  9. 05      <br />        
  10.   
  11. 06      I like the following colors:    
  12.   
  13. 07  </p>    
  14.   
  15. 08  <ul id="colors">    
  16.   
  17. 09  <% foreach (var color in ViewData["listColors"] as List<string>){ %>    
  18.   
  19. 10      <li>    
  20.   
  21. 11         <font color="<%: color %>"><%: color %></font>    
  22.   
  23. 12     </li>    
  24.   
  25. 13  <% } %>    
  26.   
  27. 14  </ul>    
  28.   
  29. 15  <p>    
  30.   
  31. 16      <%: ViewData["dateNow"] %>    
  32.   
  33. 17  </p>   


Eample :-Using ViewBag

Controller

view plaincopy to clipboardprint?
  1. public ActionResult Index()    
  2.   
  3. 02  {    
  4.   
  5. 03      List<string> colors = new List<string>();    
  6.   
  7. 04      colors.Add("red");    
  8.   
  9. 05      colors.Add("green");    
  10.   
  11. 06      colors.Add("blue");    
  12.   
  13. 07       
  14.   
  15. 08     ViewBag.ListColors = colors; //colors is List     
  16.   
  17. 09      ViewBag.DateNow = DateTime.Now;    
  18.   
  19. 10      ViewBag.Name = "Hajan";    
  20.   
  21. 11      ViewBag.Age = 25;    
  22.   
  23. 12      return View();     
  24.   
  25. 13 }   


你和上面的对比 你看见了不同吗?

View (ASPX View Engine)

view plaincopy to clipboardprint?
  1. <p>    
  2.   
  3.      My name is    
  4.   
  5.     <b><%: ViewBag.Name %></b>,     
  6.   
  7.     <b><%: ViewBag.Age %></b> years old.    
  8.   
  9.      <br />        
  10.   
  11.      I like the following colors:    
  12.   
  13.  </p>    
  14.   
  15.  <ul id="colors">    
  16.   
  17.       
  18.   
  19. <% foreach (var color in ViewBag.ListColors) { %>    
  20.   
  21.      <li>    
  22.   
  23.          <font color="<%: color %>"><%: color %></font>    
  24.   
  25.      </li>    
  26.   
  27.  <% } %>    
  28.   
  29.       
  30.   
  31. </ul>    
  32.   
  33.  <p>    
  34.   
  35.      <%: ViewBag.DateNow %>    
  36.   
  37.  </p>   


 

在上面的例子以内ViewBag是动态类型的,所以我没有必要把 ViewBag.ListColors 转换成如 List<string>这样子的形式。另一方面,这个ViewData["key"]是一个对方。

如果你在你的Controller中使用ViewData["ListColors"]=Colors,那么你可以在View试图中通过ViewBag.ListColors来检索它们。

转载于:https://www.cnblogs.com/bobo41/archive/2013/03/22/2975858.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/274319.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ux设计中的各种地图_UX设计中的空白

ux设计中的各种地图UX设计中的空白是什么&#xff1f; (What is white space in UX design?) This article will help you learn about white space and why it so important in UX design.本文将帮助您了解空白以及为什么空白在UX设计中如此重要。 White space is a very us…

花点时间了解消息,句柄和窗口

消息、句柄和窗口 一&#xff0c;为什么我要花时间研究这些东西 对于我个人来说我不想做码农&#xff0c;不想只知道拖控件&#xff0c;使用控件有的时候要了解一下底层&#xff0c;不知道你们有没有想过这样的一个问题&#xff0c;我们在C#中使用的的event事件是怎么触发这个事…

ux设计中的各种地图_如何在UX设计中使用颜色

ux设计中的各种地图Color is the mother tongue of the subconscious.颜色是潜意识的母语。 — Carl Jung—荣格 Color has more to say than meets the eye. As a building block of visual language, color highlights, guides attention, and unifies elements. In UX, co…

《Two Dozen Short Lessons in Haskell》学习(十八) - 交互式键盘输入和屏幕输出

《Two Dozen Short Lessons in Haskell》&#xff08;Copyright © 1995, 1996, 1997 by Rex Page&#xff0c;有人翻译为Haskell二十四学时教程&#xff0c;该书如果不用于赢利&#xff0c;可以任意发布&#xff0c;但需要保留他们的copyright&#xff09;这本书是学习 Ha…

figma设计_Figma中简单,可重复使用的设计系统

figma设计Putting together a design system may seem like an unnecessary hassle. It’s often easier to jump straight into designing things without having to worry about styles, components, or libraries. Some might even argue that when it comes to smaller pro…

WPF 关于鼠标事件和坐标

Mouse.GetPosition(window);可以在任何时间获得相对任意元素的鼠标位置 Mouse.Capture(el);可以让某个元素获得所有的鼠标事件不管他应不应该的到鼠标事件 Mouse.Capture(null);解除转载于:https://www.cnblogs.com/wangjixianyun/archive/2013/03/25/2980953.html

访问25%无法访问的人-如何设计可访问性

We’re increasingly dependent on the internet and computers for everything we do — this has become starkly more obvious through the COVID19 global pandemic.我们所做的一切都越来越依赖于互联网和计算机-通过COVID19全球大流行&#xff0c;这一点变得更加明显。 F…

DDD:实体如何处理外部依赖

场景 修改用户名时&#xff0c;要验证用户名的唯一性。 实现1 1 public class User 2 { 3   public void ChangeUsername(string newUsername) 4   { 5   //使用服务定位器获取IUsernameUniqueService &#xff0c;执行验证。 6   } 7 } 实现…

架构师论坛 创业_我在早期创业时作为设计师学到的东西

架构师论坛 创业For over 2 years at a young product company, I collaborated with talented engineering folks for a 0 → 1 suite of products. Here are my learnings and key takeaways. Of course, these are my views and do not represent those of my employers or …

HFileOutputFormat与TotalOrderPartitioner

最近需要为一些数据增加随机读的功能&#xff0c;于是采用生成HFile再bulk load进HBase的方式。 运行的时候map很快完成&#xff0c;reduce在sort阶段花费时间很长&#xff0c;reducer用的是KeyValueSortReducer而且只有一个&#xff0c;这就形成了单reducer全排序的瓶颈。于是…

qt按钮禁用和激活禁用_为什么试探法只是经验法则:禁用按钮的情况

qt按钮禁用和激活禁用Most user experience designers will be familiar with Jackob Nielsen’s 10 usability heuristics. They are widely cited and a great set of broad rules of thumb to follow when designing user interfaces.大多数用户体验设计师将熟悉Jackob Niel…

Teach Yourself Java 2 in 21 Days 书中样例代码实践

找了好几书JAVA的书&#xff0c;看了几章&#xff0c;都看不下去。 我觉得适合《Teach Yourself Java 2 in 21 Days》&#xff08;Rogers Cadenhead Laura Lemay&#xff09;还是适合我的。 孙卫琴那本&#xff0c;我感觉就罗嗦多了没到我点子上。 接口&#xff0c;抽象类这些内…

好奇心机制_好奇心问题

好奇心机制For my past two jobs I’ve posted a question every week in my team chat and learned so much about my co-workers. Give it a try! :D对于过去的两个工作&#xff0c;我每周都会在团队聊天中发布一个问题&#xff0c;并且对我的同事了解很多。 试试看&#xff…

20130328java基础学习笔记-循环结构for以及for,while循环区别

1.循环结构:for讲解class ForDemo{ public static void main(String[] args) { /* for(初始化表达式;循环条件表达式;循环后的操作表达式) { 执行语句;(循环体) } */ for(int x 1; x<3; x) { …

小程序设计避免犯什么错_新设计师犯下的5种印刷错误以及如何避免

小程序设计避免犯什么错Over the last year and a half, I’ve had the opportunity to teach the basics of typography to undergraduate graphic design students. During this time, I’ve noticed some common mistakes that my students make when first learning how to…

移动设备web文字单位_移动设备如何塑造现代Web设计

移动设备web文字单位I was working with a nonprofit earlier this month on redesigning their website and during the first meeting, I proposed a very standard idea: the home page needed to tell a story and guide the intended user through the intended process (…

hp-ux修改时区方法_UX研究人员可以倡导人类的6种方法

hp-ux修改时区方法In the UX world, we often hear terms like “user-centered,” “human-centered,” and “customer-centered.” We believe that in order to be innovative, we need to center experiences that are authentic, intuitive, and practical.在UX世界中&am…

2013年3月百度之星A题

伪随机数生成器 题目描述 baidu熊最近在学习随机算法&#xff0c;于是他决定自己做一个随机数生成器。 这个随机数生成器通过三个参数c, q, n作为种子, 然后它就可以通过以下方式生成伪随机数序列&#xff1a; m0 c, mi1 (q2mi 1) mod 2n, for all i > 0. 因为一些奇怪的…

为什么张扬的人别人很讨厌_为什么每个人总是讨厌重新设计,即使他们很好

为什么张扬的人别人很讨厌重点 (Top highlight)微处理 (Microprocessing) In Microprocessing, columnist Angela Lashbrook aims to improve your relationship with technology every week. Microprocessing goes deep on the little things that define your online life to…

转载--C语言:浮点数在内存中的表示

单精度浮点数&#xff1a; 1位符号位 8位阶码位 23位尾数 双精度浮点数&#xff1a; 1位符号位 8位阶码位 52位尾数 实数在内存中以规范化的浮点数存放&#xff0c;包括数符、阶码、尾数。数的精度取决于尾数的位数。比如32位机上float型为23位 double型为52位。…