Preventing the Creation of a Session in a JSP Page - Java Servlet JSP

Java examples for Servlet JSP:JSP

Description

Preventing the Creation of a Session in a JSP Page

<%-- Prevent the creation of a session --%>
<%@ page session="false">

<html>
<head><title>A Session-less JSP Page</title></head>
<body>
...
</body>
</html>

Related Tutorials