Passing Credentials to IIS

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My webiste has integrated windows authentication. I need to pass a clients
credentials (username, password) to my site without the login pop up.
I send the client to an anonymous page, get an encrypted cookie and read it
to get the credentials. Then redirect the client to my web site.

How can I pass the credentials to IIS and avoid the login pop up?

Any help or related web sites is appreciated.
 
¤ My webiste has integrated windows authentication. I need to pass a clients
¤ credentials (username, password) to my site without the login pop up.
¤ I send the client to an anonymous page, get an encrypted cookie and read it
¤ to get the credentials. Then redirect the client to my web site.
¤
¤ How can I pass the credentials to IIS and avoid the login pop up?
¤
¤ Any help or related web sites is appreciated.

You avoid the login pop up by using Integrated Windows authentication. However, there is no use of
encrypted cookies (containing user credentials) with this level of authentication so I'm not sure
why you would need one.


Paul
~~~~
Microsoft MVP (Visual Basic)
 
I guess I didn't state the question properly. I've made things confusing you
by telling you how I get the credentials. So lets try again.

How can I programatically log into a web site that has windows integrated
authentication without using the login pop up window or passing it in the
url? I have the username and password.
 
¤ I guess I didn't state the question properly. I've made things confusing you
¤ by telling you how I get the credentials. So lets try again.
¤
¤ How can I programatically log into a web site that has windows integrated
¤ authentication without using the login pop up window or passing it in the
¤ url? I have the username and password.
¤

OK, I think I understand your question, but the key issue here is that Integrated Windows security
handles the authentication automatically. A user name and password cannot be provided.

If you want to supply a user name and password w/o a login dialog or integrated security then you
should be using Forms authentication (Anonymous access).


Paul
~~~~
Microsoft MVP (Visual Basic)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top