📄 results.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%--
* @author Reghu
* @version 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the Application : results.jsp
* Creation/Modification History :
*
* Reghu 27-Dec-2001 Created
*
* Overview of Application
* This jsp displays the results of admin and shop owner operations.
*
--%>
<%@ page language="java" errorPage="../misc/errorHandler.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>
Mall Administration
</TITLE>
<!-- To prevent caching -->
<%
response.setHeader("Cache-Control","no-cache"); // HTTP 1.1
response.setHeader("Pragma","no-cache"); // HTTP 1.0
response.setDateHeader ("Expires", -1); // Prevents caching at the proxy server
%>
</HEAD>
<BODY class="body">
<jsp:include page="../misc/header.jsp" flush="true"/>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<!-- Cell 1 for Navigation links-->
<TD width="20%" valign="top">
<jsp:include page="leftNavigation.jsp" flush="true"/>
</TD>
<TD width="80%" valign="top" align="left">
<DIV align="center">
<H2>
<!-- Print the message -->
<%
String message = (String) request.getAttribute("Message");
String command = (String) request.getAttribute("command");
if(command != null && command.length() > 0) {
%>
</H2>
<P class="Heading">
<%=command %>
</P>
<% } %>
<P class="BlueText">
<% if (message!=null && message.length() > 0 ) { %>
<%=message %>
<% } %>
</P>
</DIV>
</TD>
</TR>
</TABLE>
<BR>
<BR>
<jsp:include page="../misc/footer.jsp" flush="true"/>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -