creattest.jsp~5~

来自「基于b/s模式的jsp在线考试系统」· JSP~5~ 代码 · 共 22 行

JSP~5~
22
字号
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<center>
<h1>生成试卷</h1>
<form method="POST" action="CreateTests">
<table border="1">
<tr>
<td>单项选择题共</td><td><input type="text" name="OneCount" value="60" />道</td>
</tr>
<tr>
<td>简答题共</td><td><input type="text" name="MCount" value="4" />道</td>
</tr>
<tr>
<td><input type="submit" value="生成试卷" /></td>
</tr>
</table>
</form>
</center>
<c:if test="${not empty requestScope.alert}">
<script type="" language="javascript">${requestScope.alert}</script>
</c:if>

⌨️ 快捷键说明

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