addtest.jsp~14~

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

JSP~14~
68
字号
<%@page contentType="text/html; charset=GBK"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<center>
  <h1>考题录入</h1>
<form name="form1" method="post" action="InsertTest">
  <input type="hidden" name="Test_Type" value="1"/>
  <table border="1">
    <tr>
      <td colspan="2">        单选题
        <input type="radio" name="isOne" checked="checked" value="1" onclick="chengTestType(this.value)"/>
        简答题
        <input type="radio" name="isOne" value="0" onclick="chengTestType(this.value)"/>
      </td>
    </tr>
    <tr>
      <td>题目:</td>
      <td>
        <input type="text" name="Test_Theme">
      </td>
    </tr>
    <tr>
      <td>分数:</td>
      <td>
        <input type="text" name="Test_Score" value="1">
      </td>
    </tr>
    <tr>
      <td>A项:</td>
      <td>
        <input type="text" name="A">
      </td>
    </tr>
    <tr>
      <td>B项:</td>
      <td>
        <input type="text" name="B">
      </td>
    </tr>
    <tr>
      <td>C项:</td>
      <td>
        <input type="text" name="C">
      </td>
    </tr>
    <tr>
      <td>D项:</td>
      <td>
        <input type="text" name="D">
      </td>
    </tr>
</td></tr>    <tr>
      <td>答案:</td>
      <td>
        <textarea name="Test_Result" cols="20" rows="5">        </textarea>
      </td>
    </tr>
    <tr>
      <td colspan="2">
        <input type="button" value="录入" onclick="submitAddTest()">
        <input type="reset" 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 + -
显示快捷键?