Sessions disabled : Session « JSP « Java
- Java
- JSP
- Session
Sessions disabled
<%@ page session="false" %>
<jsp:useBean id="user" class="com.java2s.Book" scope="session" />
<html>
<head><title>Attempt to use a session JavaBean with sessions disabled!</title></head>
<body>
This goes BANG!
</body>
</html>
Related examples in the same category