help.jsp

来自「Java EE 5 许多新功能都包含经过修补的 EJB 架构」· JSP 代码 · 共 83 行

JSP
83
字号
<!--
Copyright 2006 Borys Burnayev

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>

<html:html locale="true">
<head>
	<title>
		Help
	</title>
	<html:base />
	<link rel="stylesheet" type="text/css" href="../css/petstore.css" />
</head>
<body class="bodystyle" bgcolor="white" topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0">
	<div class="categoryName">
		RDA's e-Store
	</div>
	<div class="normal">
		<html:link page="/pages/Home.jsp">Browse Products</html:link>
	</div>
	<div class="normal">
		Display Category - Click on a category
	</div>
	<div class="normal">
		Display Product - Click on a product
	</div>
	<div class="normal">
		Display Item - Click on an item
	</div>
	<div class="normal">
		Search Product - Enter search criteria in the textbox and hit 'Search'
	</div>
	<div class="normal" style="margin-top: 20">
		<html:link action="/signInWelcome">Maintain Your Account</html:link>
	</div>
	<div class="normal">
		Register new account
	</div>
	<div class="normal">
		Sign In and update Account Information
	</div>
	<div class="normal" style="margin-top: 20">
		<html:link page="/pages/MaintainCart.jsp">Maintain Your Cart</html:link>
	</div>
	<div class="normal">
		Add items to cart
	</div>
	<div class="normal">
		Remove items
	</div>
	<div class="normal">
		Change quantities
	</div>
	<div class="normal" style="margin-top: 20">
		<html:link page="/pages/MaintainCart.jsp">Create Order</html:link>
	</div>
	<div class="normal">
		Confirm cart
	</div>
	<div class="normal">
		Maintain billing and shipping information
	</div>
	<div class="normal">
		Confirm order
	</div>
</body>
</html:html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?