尝试两级身份验证

Attempting two level authentication

使用 ASP.NET - 尝试使用表单身份验证和 windows 身份验证添加两级身份验证。

只需跟随麦克风在 http://mvolo.com/iis-70-twolevel-authentication-with-forms-authentication-and-windows-authentication/

上工作

他要求我们做的第一件事:

1. Unlock the <anonymousAuthentication> and <windowsAuthentication> configuration sections before you can use them in web.config:

> %windir%system32inetsrvappcmd unlock config /section:anonymousAuthentication
> %windir%system32inetsrvappcmd unlock config /section:windowsAuthentication

我好像找不到这是在哪里完成的。他是指 web.config 文件吗?或编辑 machine.config 文件?在 Windows/Microsoft.NET/Framework64/etc... 文件夹

请指教

这些是命令,因此您可以在命令提示符下 运行 它们。按键盘上的 Win R,然后输入 cmd 并单击“确定”。这将打开命令提示符。然后输入第一个命令并按回车,然后输入第二个命令并按回车。

也许这是一个 copy/paste 错误,但您似乎缺少目录路径之间的反斜杠。确保在 运行 命令时包含这些内容。