有没有办法在区域之间共享部分剃刀视图?
例如登录部分,我发现如果我使用@Html.Partial("_LoginPartial")
但生成的URL Html.ActionLink
是调用区域的本地(即使部分本身不是该区域的一部分)。< / p>
_LoginPartial.cshtml is in /Views/Shared/_LoginPartial.cshtml
Calling view is inside /Areas/Somearea/Views
Links generated are like: http://example.com/Somearea/Account/Login
But should always be: http://example.com/Account/Login
部分观点来源:
@if(Request.IsAuthenticated) {
<text>Welcome <b>@Context.User.Identity.Name</b>!
[ @Html.ActionLink(@Messages.Logout, "Logout", "Account") ]</text>
}
else {
@:[ @Html.ActionLink(@Messages.Login, "Login", "Account") ]
}
由于
答案 0 :(得分:9)
您可以在ActionLink()
方法中指定区域(或缺少一个区域):
Html.ActionLink(@Messages.Logout, "Logout", "Account", new { Area = "" }, new{})
这将确保链接无法解析为当前区域内的URL。