clear everything!!!
-
Hi, I am developing a simple online DBMS to browse my database online.... the main concern for me is to clear everything from the PC when the user disconnect so no body can go and click (Back) on the browser and see the pages if the user forgot to close it.. what I have done so far is :
Session.RemoveAll();
Response.Clear();
Response.Redirect("Default.aspx");I am sure this is not enough.. am I right? so what else I should include there?
-
Hi, I am developing a simple online DBMS to browse my database online.... the main concern for me is to clear everything from the PC when the user disconnect so no body can go and click (Back) on the browser and see the pages if the user forgot to close it.. what I have done so far is :
Session.RemoveAll();
Response.Clear();
Response.Redirect("Default.aspx");I am sure this is not enough.. am I right? so what else I should include there?
Q. What if the user hits CTRL+A, CTRL+C and then CTRL+V in notepad and forgets to close that? A. It is there own stupid fault if others see the data Where and when is your example code being called?
Life goes very fast. Tomorrow, today is already yesterday.
-
Hi, I am developing a simple online DBMS to browse my database online.... the main concern for me is to clear everything from the PC when the user disconnect so no body can go and click (Back) on the browser and see the pages if the user forgot to close it.. what I have done so far is :
Session.RemoveAll();
Response.Clear();
Response.Redirect("Default.aspx");I am sure this is not enough.. am I right? so what else I should include there?
-
Q. What if the user hits CTRL+A, CTRL+C and then CTRL+V in notepad and forgets to close that? A. It is there own stupid fault if others see the data Where and when is your example code being called?
Life goes very fast. Tomorrow, today is already yesterday.
-
Hi, I am developing a simple online DBMS to browse my database online.... the main concern for me is to clear everything from the PC when the user disconnect so no body can go and click (Back) on the browser and see the pages if the user forgot to close it.. what I have done so far is :
Session.RemoveAll();
Response.Clear();
Response.Redirect("Default.aspx");I am sure this is not enough.. am I right? so what else I should include there?
You should really abandon the session rather than just remove all of the contents. The response.clear and redirect don't do anything to get rid of the history. You need to be looking more at the cache. If you do everything in update panels or with other ajax methods, then the back button won't do much.