tags:

views:

72

answers:

2

what is use of sessions & cookies in servlets?

+1  A: 

Session store items between HTTP requests.

Cookies are used to keep track of sessions by making the browser hold and return a unique ID (the cookie) that is used to recall the stored session on the next HTTP request.

Joe Koberg