
explain sessioln tracking in jsp and display program

Session tracking is a mechanism that servlets use to maintain state about a series of requests from the same user (that is, requests originating from the same browser) across some period of time.
Mechanism of Session Tracking:
1.HttpCookies:we can use HttpCookie to store temporary information. 2.URL Rewriting:By Using this we can add or append more information to the session. 3.Hidden form fields:which means we can have hidden field inside the form and this can be used to store information about the session.
For more information, visit the following links:
http://www.roseindia.net/servlets/session-tracking.shtml
http://www.roseindia.net/quickguide/tomcat/sessiontrackingbasics.shtml
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.