⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.jsp~41~

📁 基于b/s模式的jsp在线考试系统
💻 JSP~41~
字号:
<%@page contentType="text/html; charset=GBK"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<jsp:include flush="false" page="isLogin.jsp"/>
<html>
<head>
<title>main</title>
</head>
<body bgcolor="#6699FF">
  <%
   String name = (String)session.getAttribute("name");
  %>
  <br /><br />

<marquee scrollamount="2">
 <h2>欢迎<%=name %>同学登录考试系统!</h2>
</marquee>

<center>
<table>
  <tr>
    <th width="100">
      <a href="/main.jsp?action=2">开始答题</a>
    </th>
    <th width="100">
      <a href="/main.jsp?action=3">留言</a>
    </th>
    <th width="100">
      <a href="/main.jsp?action=4">查看留言</a>
    </th>
  </tr>
</table>
<br /><br /><br />

<table>
  <tbody>
    <c:if test="${param.action==1 or empty param.action}">
      <jsp:include flush="false" page="/welcomestu.jsp"/>
    </c:if>
    <c:if test="${param.action==2}">
      <jsp:include flush="false" page="/SelectTest"/>
    </c:if>
    <c:if test="${param.action==3}">
      <jsp:include flush="false" page="/ly.jsp" />
    </c:if>
    <c:if test="${param.action==4}">
      <jsp:include flush="false" page="/detail.jsp"/>
    </c:if>
  </tbody>
</table>
</center>
</body>
</html>

⌨️ 快捷键说明

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