success.jsp

来自「网络购物中心 网络购物中心由前台管理和后台网站管理两部分组成。 前台管理 」· JSP 代码 · 共 20 行

JSP
20
字号
<%@ page contentType="text/html; charset=gb2312" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>订单处理结果</title>
</head>
<body>
<br>
<%
String success=(String)request.getAttribute("success");
String sign=(String)request.getParameter("sign");
%>
<%if(sign!=null){%>
  <script language='javascript'>alert('<%=success%>');window.location.href='orderAction.do?action=0&sign=<%=sign%>';</script>
<%}else{%>
 <script language='javascript'>alert('<%=success%>');window.location.href='orderAction.do?action=0';</script>
<%}%>
</body>
</html>

⌨️ 快捷键说明

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