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

📄 left.jsp

📁 简单的流言板系统,用myeclipse进行编写的,采用简单的jstl+javabean+servlet+jsp,属于三层架构.
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
<%@include file="./tags.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<c:if test="${param.role == null}">

	<table style="font-size: x-small; font-weight: lighter;">
		<tr>
			<td><a
				href="${pageContext.request.contextPath }/User?method=newm"
				target="right">New Message </a></td>
		</tr>
		<tr>
			<td><a
				href="${pageContext.request.contextPath }/User?method=mmm"
				target="right">Manage My Message </a></td>
		</tr>
	</table>
</c:if>
<c:if test="${param.role == 'Admin'}">

	<table style="font-size: x-small; font-weight: lighter;">
		<tr>
			<td><a
				href="${pageContext.request.contextPath }/AdminServlet?method=all"
				target="right">All Messages </a></td>
		</tr>
		<tr>
			<td><a
				href="${pageContext.request.contextPath }/AdminServlet?method=un"
				target="right">Unpreplied messages </a></td>
		</tr>
		<tr>
			<td><a
				href="${pageContext.request.contextPath }/AdminServlet?method=user"
				target="right">User Managed </a></td>
		</tr>
	</table>
</c:if>
</body>
</html>

⌨️ 快捷键说明

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