32 lines
912 B
Plaintext
32 lines
912 B
Plaintext
<%--
|
|
Document : test
|
|
Created on : 25-10-2018, 15:39:27
|
|
Author : install1
|
|
--%>
|
|
|
|
<%@page contentType="text/html" pageEncoding="windows-1252"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|
<title>JSP Page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Backup nothingness</h1>
|
|
<% String error = (String) request.getAttribute("error");
|
|
if (error != null) {
|
|
out.println("<H2>Error!!</h2>");
|
|
out.println(error);
|
|
} else {
|
|
%>
|
|
<form name="DisplayContent" action="FrontController" method="POST">
|
|
<input type="hidden" name="command" value="SessionAttributeHandler">
|
|
<input type="submit" />
|
|
</form>
|
|
<SCRIPT LANGUAGE="JavaScript">document.forms[0].submit();</SCRIPT>
|
|
</body>
|
|
<% }
|
|
%>
|
|
</body>
|
|
</html>
|