感谢您阅读本文。
在 _Layout.cshtml 页面中,我使用 @RenderPage 调用标题:
@RenderPage("/Shared/_header.cshtml")
它有这个:
<div id="Header"> Home </div>
想要使其可点击到默认操作(“索引”)
当我尝试这个时:
<div id="Header"> @Html.Action("Index", "MyController") </div>
带有此错误的“操作”用红色下划线:
'System.Web.WebPages.Html.HtmlHelper' does not contain a defintion for 'Action' and no extension ......
项目以及配置文件中都引用了“System.Web.Mvc”:
<add namespace="System.Web.Mvc" />
有任何想法吗?