www.gusucode.com > ASP+ACCESS学生排课管理系统毕业设计(源代码+论文) > ASP+ACCESS学生排课管理系统毕业设计(源代码+论文)\ASP+SQL学生排课管理系统\SelectCourse\QuerySelectedCourse.asp

    <!--
QuerySelectedCoruse.asp
Query Selected Course
按教师号查询选课结果
-->
<!--#include file="../include/KeepHouse.asp"-->
<html>
<head>
<title><%=WebName%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../include/WebCourseSettlementStyle.Css" rel="stylesheet" type="text/css">
<script language="JavaScript"><!--
function validate(){ 
	var STUDENT_ID 	= document.FormQuerySelectedCourse.STUDENT_ID.value;
	if (STUDENT_ID==""){
		alert("请您输入要查询的学生学号!");
		return false;
	}
}
-->
</script>
</head>

<body>
<!--#include file="../include/Header.asp"-->
<table width="750" border="1" align="center" cellpadding="0" cellspacing="0" bordercolorlight="#0000dd" bordercolordark="#FFFFFF" bgcolor="#F0F0F0">
<tr bgcolor="#99CCFF"> 
<td colspan="2" align="center" height="28"><font size="+1" face="黑体">选课查询</font>
</td>
</tr>
<form Name="FormQuerySelectedCourse" method="post" action="AnswerQuerySelectedC.asp" 
onSubmit="javaScript:return validate()">
<tr> 
<td width="368" align="right">学号:</td>
<td width="376"><input type="text" name="STUDENT_ID" size="20"></td>
</tr>
<tr> 
<td colspan="2" align="center"><br>
<input class=button type="submit" value="查  询" style="FONT-SIZE: 9pt; WIDTH: 80px">
<br>
</td>
</tr>
</form>
</table>
<!--#include file="../include/footer.asp"-->
</body>
</html>