我正在搜索这个,但我找不到它,但我知道这可以通过htaccess文件来完成,因为这就是下面的截图。
我想要保护预设用户名和密码后面的文件夹。我不能创建Windows用户,因为我不拥有服务器,我们不需要身份验证表单。我们希望使用浏览器的默认身份验证表单。
这怎么可能来自web.config?
这就是我所拥有的但是它不起作用
<system.web>
<authentication mode="Forms">
<credentials passwordFormat="Clear">
<user name="test" password="test" />
</credentials>
</authentication>
<authorization>
<allow users="test" />
<deny users="*" />
</authorization>
</system.web>
答案 0 :(得分:1)