|
Jetty example source code file (logout.jsp)
The Jetty logout.jsp source code<%@ page contentType="text/html; charset=UTF-8" %> <%@ page import="java.util.*"%> <%@ page import="javax.servlet.*" %> <%@ page import="javax.servlet.http.*" %> <html> <head> <title>Logout </head> <body> <% HttpSession s = request.getSession(false); s.invalidate(); %> <h1>Logout <p>You are now logged out. <a href="auth.html"/>Login </body> </html> Other Jetty examples (source code examples)Here is a short list of links related to this Jetty logout.jsp source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.