?? shopcreationresponse.jsp
字號:
<%@ page contentType="text/html; charset=UTF-8" %>
<%--
* @author Sujatha
* @version 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the Application : shopCreationResponse.jsp
* Creation/Modification History :
*
* Sujatha 27-Dec-2001 Created
*
* Overview of Application : Results of Shop Creation
*
*
--%>
<%@ page language="java" errorPage="../misc/errorHandler.jsp" %>
<HTML>
<HEAD>
<TITLE> Shop Creation Response </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
%>
<link rel="stylesheet" href="includes/Styles.css" type="text/css">
</HEAD>
<BODY class="body">
<jsp:include page="../misc/header.jsp" flush="true"/>
<FORM name="Subcategory" action="main" method="post">
<!-- Main table which has 2 cells, one for navigation links and other for content-->
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<!-- Cell 1 for Navigation links-->
<TD width="80%" valign="top" align="left">
<!--=================Start Of Content=======================-->
<DIV align="center">
<%
String message=null;
// Display the message
message =(String) request.getAttribute("Message");
if( message.equalsIgnoreCase("Already a owner") ) {
%>
<span class="BlueBold"> You already own a shop at OTN Webstore. You
cannot create another shop. </span>
<% } else if(message.equalsIgnoreCase("Notified Admin") ) {%>
<span class="BlueBold">The OTN WebStore admin has been notified about
your request. You will be notified about the status of your request
soon. </span>
<% } %>
</DIV>
<!--========================End Of Content============================-->
</TD>
</TR>
</TABLE>
<BR>
<TABLE width="81%" border="0">
<TR>
<TD width="30%" align="center">
<INPUT type=image src="../images/buttons/home.gif" border="0">
</TD>
</TR>
</TABLE>
</FORM>
<BR>
<BR>
<BR>
<jsp:include page="../misc/footer.jsp" flush="true"/>
<jsp:include page="menu.jsp" flush="true"></jsp:include>
</BODY>
</HTML>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -