- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are cookies in JSP?
Cookies are text files stored on the client computer and they are kept for various information tracking purposes. JSP transparently supports HTTP cookies using underlying servlet technology.
There are three steps involved in identifying and returning users -
Server script sends a set of cookies to the browser. For example, name, age, or identification number, etc.
Browser stores this information on the local machine for future use.
When the next time the browser sends any request to the web server then it sends those cookies information to the server and server uses that information to identify the user or may be for some other purpose as well.
- Related Articles
- How cookies work in JSP?
- How to read cookies with JSP?
- How to delete cookies with JSP?
- How do you set cookies in the JSP?
- What are Cookies?
- What are cookies in JavaScript?
- What are secured cookies in JavaScript?
- What records are present in JavaScript cookies?
- What are filters in JSP?
- What are JSP comments?
- What are JSP Directives?
- What are JSP literals?
- What are the different cookies methods in Selenium?
- What are JSP actions elements?
- What are the different scope values for the JSP action in JSP?

Advertisements