%@ LANGUAGE = JScript %>
<%
//Ensure that this page is not cached.
Response.Expires = 0;
%>
Using Session Variables
Using Session Variables
<%
//If this is the first time a user has visited
//the page, initialize Session Value.
if (Session("SessionCountJScript") == null)
{
Session("SessionCountJScript") = 0;
}
//Increment the Session PageCount by one.
//Note that this PageCount value is only
//for this user's individual session.
Session("SessionCountJScript") = Session("SessionCountJScript") + 1;
%>
You have personally visited this page
<%= Session("SessionCountJScript") %> times.
Click here to visit it again