bbsindex.jsp
来自「简单实现的商品购物系统」· JSP 代码 · 共 26 行
JSP
26 行
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
bbsIndex
</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="viewbbsservlet">
<jsp:param name="pageid" value="1"/>
</jsp:forward>
<jsp:include flush="true" page="bbsform.jsp"/>
</c:otherwise>
</c:choose>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?