islogin.jsp
来自「软件工程设计--图书管理系统」· JSP 代码 · 共 10 行
JSP
10 行
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:if test="${empty sessionScope.user}">
<jsp:forward page="login.jsp"/>
</c:if>
<%
request.getSession().setAttribute("url",request.getRequestURI());
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?