?? leftnavigation.jsp
字號:
<%--
* @author Neelesh
* @version 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the Application : leftNavigation.jsp
* Creation/Modification History :
*
* Neelesh 27-Dec-2001 Created
*
* Overview of Application :
* The JSP forms the left Navigation of the VSM application. This displays all
* the categories and shops that sell products of that category. It uses
* javascript hierarchical menus for the display
*
--%>
<%@ page language="java" errorPage="../misc/errorHandler.jsp" %>
<table width="100%" cellspacing="1" cellpadding="1">
<tr><td>
<!-- You need all this START-->
<%
// total # of categories to be displayed
int len = ((oracle.otnsamples.vsm.services.data.Category[])request.getAttribute("categories")).length;
//Each category is alloted 30 units of space
len*=30;
%>
<ilayer id="layerMenu"><div id="divMenu">
<img src="images/cm_fill.gif" width="120" height="<%=len%>" alt="" border="0">
</div></ilayer>
<!-- END -->
</td></tr>
</table>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -