

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Questions & Answers
- How cookies work in JSP?
- What are Cookies?
- What are cookies in JavaScript?
- How to read cookies with JSP?
- How to delete cookies with JSP?
- What are secured cookies in JavaScript?
- What are JSP comments?
- What are JSP Directives?
- What are JSP literals?
- How do you set cookies in the JSP?
- What are filters in JSP?
- What records are present in JavaScript cookies?
- What are JSP actions elements?
- What are the different cookies methods in Selenium?
- What are advantages of using JSP?
Advertisements