📄 redetail.jsp
字号:
<html>
<head>
<script language="javascript">
<!--
function isok(theform)
{
if (theform.name.value.length<2 || theform.name.value.length>20)
{
alert("名称最少要2位,最多20位!");
theform.name.focus();
return (false);
}
if (theform.title.value=="")
{
alert("作业标题没填呢!");
theform.title.focus();
return (false);
}
if (theform.message.value=="")
{
alert("作业答案没填呢!");
theform.message.focus();
return (false);
}
return (true);
}
-->
</script>
<title>回复作业</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<STYLE>TD {
FONT-SIZE: 9pt; LINE-HEIGHT: 140%
}
BODY {
FONT-SIZE: 9pt; LINE-HEIGHT: 140%
}
A:link {
COLOR: #0033cc; TEXT-DECORATION: none
}
A:visited {
COLOR: #0033cc; TEXT-DECORATION: none
}
A:active {
COLOR: #ff0000; TEXT-DECORATION: none
}
A:hover {
COLOR: #000000; TEXT-DECORATION: underline
}
.header {
font-family: Tahoma, Verdana; font-size: 9pt; color: #FFFFFF; background-color: #69C37C
}
.category{
font-family: Tahoma, Verdana; font-size: 9pt; color: #000000; background-color: #EFEFEF
}
</STYLE>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div align="center">
<%@ include file="head.jsp"%>
<form action="redetailok.jsp" method="post" onsubmit="return isok(this)">
<table style="BORDER-COLLAPSE: collapse" borderColor=#808080 align=center cellPadding=1 width=700 border=1>
<tr>
<td align="center" class="header" colspan=2>提交作业答案</td>
</tr>
<tr>
<td width=164 align="center">学生姓名</td>
<td width="520">
<input type=text name="name" size=20 >
<%String id=request.getParameter("id");%>
<input type=hidden name="reid" size=20 value=<%=id%>>
</td>
</tr>
<tr>
<td align="center" width="164">作业标题</td>
<td width="520">
<input type=text name="title" size=20>
</td>
</tr>
<tr>
<td align="center" width="164">作业答案</td>
<td width="520">
<textarea name="message" cols="40" rows="10"></textarea>
</td>
</tr>
<tr><td colspan=2 align=center>
<input type=submit name="submit" value="提交">
<input type=reset name="reset" value="清空">
</td></tr>
</table>
</form></div>
<%@ include file="foot.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -