📄 top.jsp
字号:
<html>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" cellpadding="0" cellspacing="0" bgColor="#d3dce7">
<tr align="center" height="18">
<td rowspan="2"><img src="images/title1.gif"></td>
<td width="75%" background="images/bg03.gif">
<strong>欢迎<%=session.getAttribute("name")%>的到来!</strong> |
<a href="home.jsp">首页</a>
|
<%
if(session.getAttribute("rank")!=null)
{
if(session.getAttribute("rank").equals("1"))
{
%>
<a href="manageuser.jsp">用户管理</a>
|
<a href="addbook.jsp">添加新图书</a>
|
<a href="listorder.jsp">订单管理</a>
|
<%
}
else
{
%>
<a href="cart.jsp">购物车</a>
|
<a href="listorder.jsp">查看订单</a>
|
<a href="updateuser.jsp?updateid=<%=session.getAttribute("id")%>">修改个人信息</a>
|
<%
}
}
%>
<a href="logout.jsp">退出</a>
</td>
<tr><td height="7"></td>
<tr align="center" height="23">
<td colspan="2" background="images/bg02.gif">
<a href="list.jsp?booktype=所有书籍">所有书籍</a>
|
<a href="list.jsp?booktype=计算机类">计算机类</a>
|
<a href="list.jsp?booktype=财经管理">财经管理</a>
|
<a href="list.jsp?booktype=中外文学">中外文学</a>
|
<a href="list.jsp?booktype=旅游交通">旅游交通</a>
|
<a href="list.jsp?booktype=政法军事">政法军事</a>
|
<a href="list.jsp?booktype=其它">其它</a>
|
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -