📄 shop.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%--
* @author Shinivas
* @version 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the Application : shop.jsp
* Creation/Modification History :
*
* Shinivas 27-Dec-2001 Created
*
* Overview of Application :
* This JSP displays the subcategories in the shop along with the shop details
*
--%>
<%@ page language="java" errorPage="../misc/errorHandler.jsp" %>
<HTML>
<HEAD>
<TITLE>OTN WebStore</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
request.setAttribute("referrer","shop.do");
request.setAttribute("query",request.getQueryString());
%>
</HEAD>
<jsp:include page="../misc/header.jsp" flush="true"></jsp:include>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="1"
bgcolor="white">
<TR>
<TD width="15%" valign="top" bgcolor="#F0F0E6">
<jsp:include page="subCategoryNavigation.jsp" flush="true"></jsp:include>
<BR>
<SPAN class="BlueBold"> <bean:message key="shop.othercats" />
</SPAN>
<jsp:include page="leftNavigation.jsp" flush="true"></jsp:include>
<br>
<jsp:include page="miniCart.jsp" flush="true"></jsp:include>
</TD>
<TD width="63%" valign="top">
<TABLE width="100%" BORDER="0">
<TR>
<TD class="SubHeading" valign="top" align="center" > <bean:write name="shop" property="shopDetail[0].shopName"/>
</TD>
</TR>
<TR>
<TD></TD>
</TR>
<TR>
<TD class="BlueSmall" align="left" >
<!-- Print the shop description. -->
<bean:write name="shop" property="shopDetails[0].description" filter="false"/> </TD>
</TR>
</TABLE>
</TD>
<TD width="22%" valign="top">
<jsp:include page="rightNavigation.jsp" flush="true"></jsp:include>
</TD>
</TR>
</TABLE>
<jsp:include page="../misc/footer.jsp" flush="true"></jsp:include>
<jsp:include page="menu.jsp" flush="true"></jsp:include>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -