transparent
Programmer
I have a page, index.asp which has a logout button. On pressing this button the browser redirects to logout.asp which contains the following code:
*****************************************************
<%option explicit%>
<%response.buffer = true%>
<%session.lcid=3081%>
<%
session("user_id"
= null
session("users_name"
= null
session("department_id"
= null
session("department_name"
= null
%>
<script>window.location.href="index.asp"</script>
******************************************************
This should redirect to a different version of index.asp (due to null values of session variables). It doesn't the index page is just a cached version of the original index.asp. Whats going wrong??
Cheers
for any help
*****************************************************
<%option explicit%>
<%response.buffer = true%>
<%session.lcid=3081%>
<%
session("user_id"
session("users_name"
session("department_id"
session("department_name"
%>
<script>window.location.href="index.asp"</script>
******************************************************
This should redirect to a different version of index.asp (due to null values of session variables). It doesn't the index page is just a cached version of the original index.asp. Whats going wrong??
Cheers
for any help