I have a Windows 2003 server running several ASP.NET sites. I have full controll of IIS and all the settings.
I have a staging site that has been closed off to the public (and to Google) and requires server validation via server users. So if someone comes to the site it immediately pops up the browser’s input box for a username and password to be entered.
However, I now NEED to have some dynamic calls from ASP.NET using the HttpWebRequest class. This call can’t (or I don’t know how) authenticate itself via the browser’s input boxes. And IIS will allow me to do either/or on User Access or IP Access… I’d LOVE to say hey if the request is coming from “000.111.22.33” then they don’t need to sign in, if it’s coming from any other IP address, then they have to have a valid user account on the server.
Is there any way that I can do this?
Thanks for any help!
Brandon