2013年1月15日

MVC3中 ViewBag、ViewData和TempData的使用和区别

摘要: public dynamic ViewBag { get; }public ViewDataDictionary ViewData { get; set; }ViewBag和ViewData其实是互通的ViewBag和ViewData的区别:ViewBag 不再是字典的键值对结构,而是 dynamic 动态类型,它会在程序运行的时候动态解析。eg: ViewBag.NumberObjs = new string[] { "one", "two", "three" }; ViewData["NumberArrs"] 阅读全文

posted @ 2013-01-15 17:54 俊树 阅读(10012) 评论(0) 推荐(0) 编辑

Razor master page

摘要: master 页面占位符@RenderSection 局部占位符模板页--占位:@{ if (IsSectionDefined("SectionB")) { @RenderSection("SectionB") } }继承页--运用@section SectionB{ <P>Section B Content</P> }@RenderBody() 模板页--占位: <div id="main"> @RenderBody </div>继承页--运用 @{ Layout = "~/ 阅读全文

posted @ 2013-01-15 16:33 俊树 阅读(282) 评论(0) 推荐(0) 编辑

导航