Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript_howto thread: Re: How to logout from NT Authentication using Javascript


Message #1 by "joanna" <jojeffs@h...> on Mon, 20 Jan 2003 17:30:29
> Guys, we are running a website with NT Authentication security to access 
t> he pages.

> I like to place a "Log Out" button to log out the user from NT 
A> uthentication with out closing the browser. So, if someone try to 
access 
t> he page, it will popup the NT Authentication again.

> Is it possible to do something like this using JavaScript.

> Earliest reponse will be highly appriciated.

> Thanks
------------------------------------------------------

we had a problem with this. Try

	Response.Clear
	Response.Status = "401 Unauthorized"
	
This should bring up the NT Authentication prompt.

Joanna

  Return to Index