set_examtype.jsp
来自「中学教学管理系统」· JSP 代码 · 共 56 行
JSP
56 行
<%@ page contentType="text/html; charset=gb2312" language="java"
errorPage=""%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>设置考试</title>
</head>
<body>
<div align="center">
<table width="100%" border="1">
<tr>
<td height="41" bgcolor="#00CCFF">
<div align="center">
<h1 class="style1">
设置考试
</h1>
</div>
</td>
</tr>
<tr>
<td height="45">
<form method="post" action="/TeacherManager/setexam.do">
<center>
<p>
考试编号:
<input type="text" name="examNo" size=30 value="">
</p>
<p>
考试科目:
<input type="text" name="examItem" size=30 value="">
</p>
<p>
考试类型:
<input type="password" name="examType" size=30 value="">
</p>
<p>
<input type="submit" name="submit" size=30 value="提交">
</p>
</center>
</form>
</td>
</tr>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?