我一直在试图跟随这个博客来获得Areas的工作:
http://mstechkb.blogspot.com/2010/10/areas-in-aspnet-mvc-20.html
<location path="Area1"> <system.web> <authentication mode="Windows" /> <authorization> <allow roles="role1,role2"/> <deny users="*"/> </authorization> </system.web> </location>
但是,当我尝试在Visual Studio 2010中的一个新项目中创建它时,我运行时会收到以下错误:
It is an error to use a section registered as allowDefinition=’MachineToApplication’ beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.
从我可以看到这是因为您不能指定身份验证元素,除非它是顶级web.config.
所以有可能做博客文章的内容呢?您可以在web.config中的“位置”元素中包含认证元素区域吗?
@H_404_18@