forward.jsp

来自「网上服装店 能让用户在该网站上对物品进行上传购买等操作。该设计为原版」· JSP 代码 · 共 23 行

JSP
23
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" %>
<% request.setCharacterEncoding("gb2312"); %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>转换页面</title>
</head>

<body>
<%
	String temp=request.getParameter("wtype");
	String shop=request.getParameter("shop");
	session.setAttribute("wt",temp);
	session.setAttribute("ware",shop);
	if(temp==null&&shop==null){
		response.sendRedirect("../middle.jsp");
	}else{
		response.sendRedirect("../center.jsp");
	}
%>
</body>
</html>

⌨️ 快捷键说明

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