Configure Webmatrix for Windows Users

不羁的心 提交于 2019-12-03 20:49:47

Probably you published your web site without changing authentication on the corresponding virtual directory of IIS.

You should deactivate "Anonymous" authentication and activate "Windows" authentication. The existence of <authentication mode="Windows" /> line in web.config is not enough for IIS. Moreover "Windows" authentication must be installed of cause (see for example this for more information).

try

<appSettings>
  <add key="enableSimpleMembership" value="false" />
</appSettings> 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!