⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main_menu.jsp

📁 一个基本的图书馆管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
	prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
	prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<!-- 首页菜单 -->
<table border="0" cellPadding="0" cellSpacing="0" width="740"
	height="20" valign="top" background="images/m_top_menu2_bk.jpg">
	<tr>
		<td width="20" align="center"></td>
		<td width="200" align="left"><font class="font12" color="#000000"></font></td>
		<td>
		<table border="0" cellPadding="0" cellSpacing="0">
			<tr>
				<td align="right" width="510">
				<!-- 已登陆 -->
				<logic:present name="UserSession" scope="session">
				<html:link forward="/myAccount"><font color="#ffffff" class="font12">我的信息</font></html:link>
				<font color="#ffffff" class="font12">|</font>
				<html:link forward="/myPreBorrow"><font color="#ffffff" class="font12">我的预借</font></html:link>
				<font color="#ffffff" class="font12">|</font>
				<html:link forward="/myBorrow"><font color="#ffffff" class="font12">我的借阅</font></html:link>
				</logic:present>
				<!-- 未登陆 -->
				<logic:notPresent name="UserSession" scope="session">
				我的信息
				<font color="#ffffff" class="font12">|</font>
				我的预借
				<font color="#ffffff" class="font12">|</font>
				我的借阅
				</logic:notPresent>
				</td>
			</tr>
		</table>
		</td>
		<td width="10" align="center"></td>
	</tr>
</table>

⌨️ 快捷键说明

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