我的视图中有以下代码
<div>
@Html.Action("List", "Product")
</div>
上面的ProductController
指的是命名空间CoreNamespace
。我希望上面的代码使用另一个名称空间CustomNamespace
,它具有一个名称相同的Controller和Action(分别为ProductController
和List
)。没有涉及的区域。
我想做这样的事情
<div>
@Html.Action("List", "Product", new { namespace = "CustomNamespace" })
</div>
这可能吗?
答案 0 :(得分:0)
你可以试试这样的事情
@ Html.Action(&#34; TestMethod&#34;,&#34; OtherProject.Controllers.TestMethodController,OtherProject&#34;)