Could anyone please tell me. Suppose i have an application which contains 10 different
JSP pages. And each JSP page contains some data, which we have to store for the future use. Now after going through all the 10 pages i want some calcuation related to the last 10 data values which were picked from the different JSP pages.
So i suppose i use HttpSession for this but how to maintain all these data values. Means i use one HttpSession object among all JSP pages but how would i place the values in the HttpSession object, i suppose through setAttribute. But, should i use different attribute for the different jsp or only one attribute for different Jsp.
please tell me.