Submit
Improve company productivity with a Business Account.Sign Up
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
Please enter a first name
Please enter a last name
We will never share this with anyone. Privacy Policy
Must be at least 4 characters long.
Join and Comment
By clicking you are agreeing to Experts Exchange's Terms of Use.
From novice to tech pro — start learning today.
Premium members can enroll in this course at no extra cost.
there are of course many ways you can do this.
Here is one way:
When your action-class has determined that the user has opened the page, you set a parameter:
HttpSession session=request.getSession
session.setAttribute("didU
In the jsp:
<%
HttpSession session=request.getSession
String didUserOpenPage1=session.g
if(didUserOpenPage1.equals
System.out.println("OH NO! HE HAS OPENED THIS PAGE BEFORE!!!!!");
}
// here you know its the 1. time
%>