resultmanager.jsp

来自「STRUTS+IBITS开发的一个图书管理系统」· JSP 代码 · 共 24 行

JSP
24
字号
<%@ page contentType="text/html; charset=gb2312" %>
<jsp:useBean id="chinese" scope="request" class="com.tool.Chinese"/>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>显示操作员登录结果</title>
</head>
<body>
<br>
<%
String message=(String)request.getAttribute("message");
if(request.getAttribute("account")==null){
%>
<script language='javascript'>alert('<%=message%>');window.location.href='index.jsp';</script>
<%}else{
session.setAttribute("account",request.getAttribute("account"));
session.setAttribute("managerLevef",request.getAttribute("managerLevef"));
%>
<script language='javascript'>alert('<%=message%>');window.location.href='firstPage.jsp';</script>
<%}%>
</body>
</html>

⌨️ 快捷键说明

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