- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 is session attribute in JSP?
The session attribute indicates whether or not the JSP page uses HTTP sessions. A value of true means that the JSP page has access to a builtin session object and a value of false means that the JSP page cannot access the builtin session object.
Following directive allows the JSP page to use any of the builtin object session methods such as session.getCreationTime() or session.getLastAccessTime() −
<%@ page session = "true" %>
- Related Articles
- What is the session Object in JSP?
- What is autoFlush attribute in JSP?
- What is contentType attribute in JSP?
- What is errorPage attribute in JSP?
- What is isErrorPage attribute in JSP?
- What is extends attribute in JSP?
- What is import attribute in JSP?
- What is info attribute in JSP?
- What is isThreadSafe attribute in JSP?
- What is language attribute in JSP?
- What is isELIgnored Attribute in JSP?
- What is isScriptingEnabled Attribute in JSP?
- How is Session Management done in JSP?
- What is a buffer attribute in JSP?
- What methods of session object is used frequently in JSP and for what purpose?

Advertisements