views:

21

answers:

1

I was wondering if its possible to redirect a user to a web page that required a username and password such as the one you would require for an IIS authenticated web site and automatically send through the UN and PW, eg -

Response.Username = "";

Response.Password  = "";

Response.Redirect("url");
A: 

I do not believe this is possible under any of the authentication forms provided by default. This would not work across domains either.

GrayWizardx