I've got a site on our intranet that has a number of pages that run the following code to authenticate the user against NT before opening the page:
Dim NTCurrentUser
NTCurrentUser = TRIM( Request.ServerVariables( "AUTH_USER" ) )
IF NTCurrentUser = "" THEN
Response.Status = "401 Not Authorized"
Response.AddHeader " Response.End
END IF
The pages work fine except for one user. Whenever she tries to access any page that requires authentication (not just my pages), it takes almost 5 minutes for the login dialogue box to come up.
She's using NT4 SP6, IE5.5, the same setup being used by dozens of other people who are not having this problem. The only answer the HelpDesk had was to reimage her PC, but this has not helped.
I verified that her TCP/IP network protocol and IE security settings are the same as on my machine.
Has anyone heard of anything like this? _________
Rott Paws
...It's not a bug. It's an undocumented feature!!!
Dim NTCurrentUser
NTCurrentUser = TRIM( Request.ServerVariables( "AUTH_USER" ) )
IF NTCurrentUser = "" THEN
Response.Status = "401 Not Authorized"
Response.AddHeader " Response.End
END IF
The pages work fine except for one user. Whenever she tries to access any page that requires authentication (not just my pages), it takes almost 5 minutes for the login dialogue box to come up.
She's using NT4 SP6, IE5.5, the same setup being used by dozens of other people who are not having this problem. The only answer the HelpDesk had was to reimage her PC, but this has not helped.
I verified that her TCP/IP network protocol and IE security settings are the same as on my machine.
Has anyone heard of anything like this? _________
Rott Paws
...It's not a bug. It's an undocumented feature!!!