showoperationmanager.jsp
来自「STRUTS+IBITS开发的一个图书管理系统」· JSP 代码 · 共 23 行
JSP
23 行
<%@ 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>
<%
if(request.getAttribute("result")==null){
%>
<script language='javascript'>alert('您修改的密码成功,请牢记您的新密码!!!');window.location.href='firstPage.jsp';</script>
<%}else{
String result=(String)request.getAttribute("result");
String method=(String)request.getAttribute("method");
%>
<script language='javascript'>alert('<%=result%>');window.location.href='<%=method%>';</script>
<%}%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?