header.jsp
来自「简单的流言板系统,用myeclipse进行编写的,采用简单的jstl+javab」· JSP 代码 · 共 32 行
JSP
32 行
<%@ 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>
<br>
<table align="center">
<tr>
<td><span style="text-align: center;"><font
style="font: bold; font-size: xx-large; text-align: center;">Welcome
to CQ Message System</font></span></td>
</tr>
</table>
<c:if test="${sessionScope.userName != null}">
<table align="right">
<tr>
<td style="font-size: x-small; font-weight: lighter;">Welcome <c:out
value="${userName}" /><a href="${pageContext.request.contextPath }/User?method=logout" target="_parent"> Logout</a></td>
</tr>
</table>
</c:if>
<br>
<hr>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?