asp_web_howto thread: Authentication dialog displayed 3 times...
I'm developing a ASP page that requires user authentication. A Windows
style dialog is invoked after setting the Status of Response object.
However, the dialog is shown 3 times, even I input correct login name and
password. Anyone knows what's happen? Would you please give me tell me the
solution?
Here is a portion of my code:
Response.Status = "401 Unauthorized"
Response.AddHeader "WWW-Authenticate", "Basic"
Response.End
Thanks very much in advance.
Dante