区域的路线值 (MVC3)

发布于 2024-10-18 12:03:44 字数 451 浏览 5 评论 0原文

我正在使用 MVC 版本 3 中的区域。 我的注销和登录操作方法正在路由到该区域,我需要它们路由到不在该区域中的普通控制器。

我尝试了以下

主机://AREA/CONTROLLER/METHOD 而不是主机://CONTROLLER/METHOD。

@if(Request.IsAuthenticated) {
    <text>Welcome <b>@Context.User.Identity.Name</b>
    [ @Html.ActionLink("Log Off", "LogOff", "Account", new { area = "" }) ]</text>
}
else {
    @:[ @Html.ActionLink("Log On", "LogOn", "Account", new { area = "" }) ]
}

I am using areas in MVC version 3.
My logoff and logon action methods are routing to the area, and I need them to route to the normal controller that is not in an area.

I have tried the following

host://AREA/CONTROLLER/METHOD instead of host://CONTROLLER/METHOD.

@if(Request.IsAuthenticated) {
    <text>Welcome <b>@Context.User.Identity.Name</b>
    [ @Html.ActionLink("Log Off", "LogOff", "Account", new { area = "" }) ]</text>
}
else {
    @:[ @Html.ActionLink("Log On", "LogOn", "Account", new { area = "" }) ]
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

噩梦成真你也成魔 2024-10-25 12:03:44

我已经弄清楚了。
显然我需要额外的参数,它被应用于错误的重载。

@Html.ActionLink("Log Off", "LogOff", "Account", new { area = string.Empty }, new {})

I have figured this out.
Apparently I need the additional parameter, it's being applied to the wrong overload.

@Html.ActionLink("Log Off", "LogOff", "Account", new { area = string.Empty }, new {})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文