collegeedit.asp
来自「网络考试系统最终备份」· ASP 代码 · 共 52 行
ASP
52 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<link rel="stylesheet" type="text/css" href="css.css">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>系统管理>部门管理>院校添加</title>
<script language="javascript">
function addit(myform)
{
if ((myform.collegeName.value == "请输入院校名称") || (myform. collegeName.value == ""))
{
alert("请输入院校名称!院校不能为空");
return false;
}
else
{
return true
}
}
</script>
</head>
<body>
<form method="POST" name="addcollege" action="collegeeditsave.asp" onSubmit="return addit(addcollege);">
<table border="1" cellpadding="0" cellspacing="1" style="border-collapse: collapse" bordercolor="#C0C0C0" width="51%" id="AutoNumber3" height="20">
<tr>
<td nowrap width="18%" bgcolor="#E1E1E1" >院校名称</td>
<td nowrap width="82%" colspan="2" bgcolor="#E1E1E1"><input name="collegeName" type="text" value="<%=request("f_collegeName")%>">
<input type="hidden" name="shoolID" value=<%=request("f_collegeID")%>></td>
</tr>
<tr>
<td nowrap bgcolor="#E1E1E1" ><div align="center">院<br>
校<br>
描<br>
述<br>
</div></td>
<td nowrap colspan="2" bgcolor="#E1E1E1"><textarea name="textarea" cols="45" rows="6"><%=request("f_collegeDesc")%></textarea></td>
</tr>
<tr>
<td align="right" colspan="3" bgcolor="#E1E1E1"><input type="submit" name="Submit" value="修改">
<input type="reset" name="reset" value="重填"> </td>
</tr>
</table>
</form>
<p> </p>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?