我想要实现的MVC应用程序的Windows身份验证,但我遇到了一些麻烦。
我不得不创建一个名为“测试”的新用户,我给了他所有的文件夹的权限在IIS
在web配置我写了这个代码:
<system.web>
<authentication mode="Windows"/>
<authorization>
<deny users="?"/>
</authorization>
...
我我设置授权产品的控制器上的属性如下
[Authorize(Users="test")]
public class ProductsController : Controller
{ ...
我也只能试试
[Authorize]
public class ProductsController : Controller
{...
当我试图进入它要求我不断的凭据,没有给我获准进入,即使用户名和密码是否正确
我哪里做错了吗?