Introduction
The code below shows how to prevent the creation of a Session in a Java Server Page (JSP).
<%-- Prevent the creation of a session --%> <%@ page session="false"> <html> <head><title>A Session-less JSP Page</title></head> <body> ... </body> </html>