ASP.Net MVC 3 区域和混合模式身份验证
是否可以让 ASP.Net MVC 区域使用与应用程序的其余部分不同的身份验证?主应用程序必须是表单身份验证,因为它是外部网。我需要有一个只能由内部员工访问的管理部分。我做了很多研究,并找到了如何执行混合模式的示例,但我还没有找到任何显示如何使用 ASP.Net MVC 区域执行此操作的示例。
感谢您的帮助。
Is it possible to have an ASP.Net MVC Area use different authentication then the rest of the application? The main app has to be forms authentication since it's an extranet. I need to have an Admin section that is only accessible by internal employees. I've done a lot of research and have found examples of how to do Mixed Mode, but I have not found anything showing how to do it with an ASP.Net MVC Area.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个区域都可以有自己的 web.config,您可以在其中配置/覆盖您想要的身份验证类型。
这是有关区域和多个 web.config 文件的博客文章:
http://mstechkb.blogspot.com/2010/10 /areas-in-aspnet-mvc-20.html
Each area can have its own web.config where you can configure/override the kind of authentication you want.
Here's blog post about areas and multiple web.config files:
http://mstechkb.blogspot.com/2010/10/areas-in-aspnet-mvc-20.html