Re: [AspClassicAnyQuestionIsOk] session close

2005-11-20 Thread Charles Carroll
Can you please update the page http://www.learnasp.com/learn/cachenomore.asp to include that since you have access to the server John. On 11/19/05, John Shepard [EMAIL PROTECTED] wrote: The browser, at least firefox still caches information to disk, even with the no-cache set, use

Re: [AspClassicAnyQuestionIsOk] session close

2005-11-19 Thread Charles Carroll
http://www.learnasp.com/learn/cachenomore.asp On 11/19/05, girish nehte [EMAIL PROTECTED] wrote: Hello friends, I had made an application using ASP, but I am facing problem for logging out the user, while the user is on the login page I had stored the user name in session(username) now

Re: [AspClassicAnyQuestionIsOk] session close

2005-11-19 Thread John Shepard
The browser, at least firefox still caches information to disk, even with the no-cache set, use CacheControl: no-store instead, which blocks both IE and Firefox/Mozilla browsers. On 11/19/05, Charles Carroll [EMAIL PROTECTED] wrote: http://www.learnasp.com/learn/cachenomore.asp On 11/19/05,

Re: [AspClassicAnyQuestionIsOk] Session close

2005-11-19 Thread John Shepard
Don't cross post, Use Session.Contents.RemoveAll() instead of Session.Abandon(), whenever possible, IIS 5 and up. To stop IE/Firefox/Mozilla browsers from caching pages, use Cache-Control: no-store, instead of Cache-Control: no-cache. On 11/18/05, girish nehte [EMAIL PROTECTED] wrote: Hello

[AspClassicAnyQuestionIsOk] session close

2005-11-18 Thread girish nehte
Hello friends, I had made an application using ASP, but I am facing problem for logging out the user, while the user is on the login page I had stored the user name in session(username) now on the logout page I remove the contents of session the abandon the session using