I have an ASP intranet application that currently uses anonymous authentication, and has a login screen that verifies user info from a database. All is fine.
I'm making some changes to this program, and as a result, users will be jumping in and out of the application constantly, closing and reopening it many times a day. So, I want to eliminate all login screens. Instead, I want the program to determine which Windows domain user account the user is logged in as, and take appropriate action from there.
At first, I thought disabling Anonymous access and enabling "Integrated Windows Authentication" would work, and it DOES set the "AUTH_USER" servervarialbes to the info I need. But when I access the application, I get a windows authentication screen, which I don't want. (it only asks you to authenticate once, but still, I dont want any extra login screens).
Then I put Ananymous access back, but all the ServerVariables I tried (AUTH_USER, REMOTE_USER, LOGON_USER, etc). returned blanks.
Is there a scenario where I can get all that I am looking for?
I'm making some changes to this program, and as a result, users will be jumping in and out of the application constantly, closing and reopening it many times a day. So, I want to eliminate all login screens. Instead, I want the program to determine which Windows domain user account the user is logged in as, and take appropriate action from there.
At first, I thought disabling Anonymous access and enabling "Integrated Windows Authentication" would work, and it DOES set the "AUTH_USER" servervarialbes to the info I need. But when I access the application, I get a windows authentication screen, which I don't want. (it only asks you to authenticate once, but still, I dont want any extra login screens).
Then I put Ananymous access back, but all the ServerVariables I tried (AUTH_USER, REMOTE_USER, LOGON_USER, etc). returned blanks.
Is there a scenario where I can get all that I am looking for?