uploadgoodssuccess.jsp

来自「实现淘宝网支付宝的模拟功能」· JSP 代码 · 共 18 行

JSP
18
字号
<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<%@page import="ecp.util.Constants"%><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<%
  String userID=(String)request.getAttribute(Constants.USER_ID);
  String userName=(String)request.getAttribute(Constants.USER_NAME);
%>
<body>
    商品上传成功!
  <a href="<%=request.getContextPath() %>/validateUserSuccess.jsp?userID=<%=userID %>&userName=<%=userName %>">返回主页面</a>
</body>
</html>

⌨️ 快捷键说明

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