尝试从http://mvolo.com/iis-70-twolevel-authentication-with-forms-authentication-and-windows-authentication/的示例中将表单和窗口的两级身份验证实现到我的应用程序中。
当我将mikes代码添加到我的web.config文件中时,我收到错误:
Line 27: <location path="~/login.aspx">
Line 28: <!-- Disable Forms Authentication -->
Line 29: **<formsAuthenticationWrapper enabled="false" />**
Line 30: <system.webServer>
Line 31: <security>
Parser Error Message: Unrecognized configuration section formsAuthenticationWrapper.
有没有人知道为什么?
修改
是的,我添加了他的配置部分配置
<section name="formsAuthenticationWrapper" type="Mvolo.Modules.FormsAuthConfigurationSection" />
但我不认为这是正确的。我的类型应该不同吗?&gt; mikes网站为http://mvolo.com/
,其类型为Mvolo.Modules.
请原谅我,如果这是一个仍在学习的简单错误?我该怎么改变类型?