通过将其与userId,RoleId连接使用Windows身份验证

时间:2014-08-26 09:33:11

标签: c# asp.net asp.net-mvc

我有一个mvc应用程序,它通过DefaultConnection数据库对用户进行身份验证。现在我希望用Windows登录的用户可以在我的mvc app中自动登录。

我可以用asp.net mvc吗?

感谢您提供的所有建议

1 个答案:

答案 0 :(得分:1)

如此处所述: - http://www.asp.net/mvc/tutorials/older-versions/security/authenticating-users-with-windows-authentication-cs

  

创建新的ASP.NET MVC应用程序时,Windows身份验证   默认情况下未启用。表单身份验证是默认设置   为MVC应用程序启用的身份验证类型你必须启用   通过修改MVC应用程序的Web进行Windows身份验证   配置(web.config)文件。找到部分和   修改它以使用Windows而不是像这样的Forms身份验证:

<authentication mode="Windows">

</authentication>

有关详情: - Windows Authentication for ASP.NET MVC 4 - how it works, how to test it