mvc 与表单身份验证如何使页面需要身份验证
我有基本的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 ASP.NET MVC 中,您通常授权控制器或控制器方法。
为此,您只需在控制器或控制器方法的顶部添加
[Authorize]
即可。如果您只想授权特定角色,请使用
[Authorize("RoleName")]
。例子:
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: