orderindex.jsp

来自「简单实现的商品购物系统」· JSP 代码 · 共 25 行

JSP
25
字号
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
orderIndex
</title>
</head>
<body bgcolor="#ffffff">
<c:choose>
<c:when test="${sessionScope.userName==null}">
<jsp:include flush="true" page="checkLogin.jsp"/>
</c:when>
<c:otherwise>
  <jsp:forward page="vieworderservlet">
<jsp:param name="pageid" value="1"/>
</jsp:forward>
<jsp:include flush="true" page="selectOrder.jsp"/>
</c:otherwise>
</c:choose>


</body>
</html>

⌨️ 快捷键说明

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