mvc 与表单身份验证如何使页面需要身份验证

发布于 2024-08-21 08:12:25 字数 132 浏览 4 评论 0原文

我有基本的 MVC 项目,并设置了登录屏幕。我创建了一个新页面,但是当我运行该网站时,我只需粘贴新视图的 URL 并导航到那里,它不会将我重定向到登录屏幕。

使用表单身份验证后,锁定网站其余部分的最佳方法是什么?

谢谢

i have the basic mvc project with the login screen set up. i created a new page, but when i run the site i can just paste the URL of the new view and navigate there and it doesn't redirect me the login screen.

what's the best way to lock down the rest of my site once i am using forms auth?

thanks

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

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

发布评论

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

评论(1

哎呦我呸! 2024-08-28 08:12:25

在 ASP.NET MVC 中,您通常授权控制器或控制器方法。

为此,您只需在控制器或控制器方法的顶部添加 [Authorize] 即可。

如果您只想授权特定角色,请使用[Authorize("RoleName")]

例子:

[Authorize]
public class MyController : Controller
{
    public ActionResult SomeAction()
    {
        // ...
    }

    [Authorize("Administrators")]
    public ActionResult AdministrativeAction()
    {
        // ...
    }
}

In ASP.NET MVC, you generally authorize either controllers or controller methods.

To do that, you simply add [Authorize] at the top of the controller or the controller method.

If you want to authorize only specific roles then use [Authorize("RoleName")].

Example:

[Authorize]
public class MyController : Controller
{
    public ActionResult SomeAction()
    {
        // ...
    }

    [Authorize("Administrators")]
    public ActionResult AdministrativeAction()
    {
        // ...
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文