在项目级别设置Http基本身份验证(web.config)

时间:2016-01-24 21:35:13

标签: c# asp.net web-config basic-authentication

有什么办法吗?我已经看到所有其他配置文件被引用但是这个(通常是IIS)但我需要它随项目一起移植。我有一个项目,我需要通过SSL进行基本的HTTP身份验证演示,我不会认为这将是困难的部分。

1 个答案:

答案 0 :(得分:2)

将此代码放在system.web元素下的web.config文件中:

 <security>
  <authentication>
   <anonymousAuthentication enabled="false" />
   <basicAuthentication enabled="true" />
  </authentication>
 </security>

请记住Basic Auth。必须已在服务器上启用(通过打开/关闭Windows功能)