使用 RenderPage
加载子视图
@RenderPage("~/Shared/Component/Dialog.cshtml", new { title = "Hello world!", content="Nani?" })
Razor子视图里使用 Page 来获取传递的数据
<div id="dialog" title="@Page.title" style="display: none;"> <p> @Page.content </p> </div>
使用 Html.Partial
加载子视图
@Html.Partial("Component/Dialog", null, new ViewDataDictionary { { "title", "Hello world!" }, { "content", "Nani?" } })
Razor子视图里使用 ViewBag 来获取传递的数据
<div id="dialog" title="@ViewBag.title" style="display: none;"> <p> @ViewBag.content </p> </div>
还有一种方法是指定子视图为强类型 List
参考资料:
http://www.dotnetcurry.com/ShowArticle.aspx?ID=646
http://stackoverflow.com/questions/7177153/mvc3-passing-data-beyond-the-model-to-partial-view