InterviewSolution
Saved Bookmarks
| 1. |
How do you enable and disable sessions using JSP? |
|
Answer» The session in a JSP page can be disabled by SETTING the session attributes to false. The following can be exampled to disable the session object using page directive: <%@ page session="false" %> |
|