一、在ASP.NET MVC中,创建视图最典型的方式是调用一个action方法,它使用模型准备视图数据。action方法然后调用控制器的视图方法创建视图。
1
<% Html.RenderAction("Display", "Section"); %>class="Apple-converted-space">
如果你需要的动作方法在其它的区域中,你可以在对象中传递区域名称,如下:
2
<% Html.RenderAction("Display", new { area = "Navigation" }); %>
通过使用RenderAction不同的重载方法,你就可以在不同的区域调用不同的控制器。当area=""时,表示主区域
3
monospace; white-space: pre-wrap; float: none !important; letter-spacing: normal; height: auto !important; color: #000000 !important; vertical-align: baseline !important; overflow: visible !important; top: auto !important; right: auto !important; word-spacing: 0px; left: auto !important; -webkit-text-stroke-width: 0px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; border: 0px; padding: 0px !important;"><%: Html.ActionLink(
"登录"
,
"LogOn"
,
"Account"
) %>
推荐文章:初探Razor视图引擎