javascript_howto thread: Re: How to logout from NT Authentication using Javascript
> 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