Допустим, у вас есть приложение ASP.NET с проверкой подлинности с помощью форм с формой входа login.aspx, и ваши пользователи хранятся в БД. Теперь вы хотите поддерживать проверку подлинности с помощью форм и Windows. Вот что я делаю:
Для аутентификации форм я использую БД SQL с, скажем, таблицей Users. Я добавляю в эту таблицу новый столбец с именем WindowsUserName, в котором я сохраню имя пользователя Windows в форме COMPUTER \ User
В форме login.aspx я добавляю метод, который отправит ответ, который покажет окно входа в систему:
private void ActivateWindowsLogin()
{
Response.StatusCode = 401;
Response.StatusDescription = "Unauthorized";
Response.End();
}
Где-то у меня есть ссылка типа <a href="login.aspx?use=windows">Admin</a>
В login.aspx Page_Load я добавил:
if (Request.QueryString["use"] == "windows")
{
var windowsuser = Request.ServerVariables["LOGON_USER"];
if (windowsuser.Length == 0)
ActivateWindowsLogin();
else
{
// get userId from DB for Windows user that was authenticated by IIS
// I use userId in .ASPXAUTH cookie
var userId = GetUserIdForWindowsUser(windowsuser);
if (userId > 0) //user found
{
// here we get User object to check roles or other stuff
var user = GetApplicationUser(userId);
// perform additional checks here and call ActivateWindowsLogin()
// to show login again or redirect to access denied page.
// If everythig is OK, set cookie and redirect
FormsAuthentication.SetAuthCookie(userId.ToString(), false);
Response.Redirect(FormsAuthentication.GetRedirectUrl(userId.ToString(), false), true);
}
else //user not found
ActivateWindowsLogin();
}
}
else
{
//your Forms auth routine
}
GetUserIdForWindowsUser и GetApplicationUser - мои методы только для примера.