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

📄 top.jsp

📁 自己编写的jsp+mysql论坛系统,带后台系统.不是很完善,但是功能是完整的
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=GBK"
	pageEncoding="GBK"%>
<%
	request.setCharacterEncoding("GBK");
%>
<!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=GBK">
	</head>
	<body>
		<a href="index.jsp">首页</a>&nbsp;
		<%
			String username = "";
			if (null != session.getAttribute("login")) {
				username = session.getAttribute("login").toString();
		%>
		<a href="profile.jsp"><%=username%></a>[
		<a href="logout.jsp">注销登录</a> ]
		<%
			} else {
		%>
		<a href="login.jsp">登录</a>&nbsp;
		<%
			}
		%>

		<a href="reg.jsp">注册</a>&nbsp;
		<a href="./admin/admin_login.jsp">后台</a>
		<br>
		<hr>
		<br>
	</body>
</html>

⌨️ 快捷键说明

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