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

    <!--#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">
</head>
<body bgcolor="#F0F0F0">
<%
call insureID()
if Session("USER_TYPE")<>"Student"  then 'and Session("USER_TYPE")<>"Admin"
	response.end
end if
sql="select STUDENT_NAME from StudentInfo where STUDENT_ID='"&Session("USER_NAME")&"'"
call openDB()
rs.open sql,conn,1,1
if rs.eof then
	call trigErr()
end if
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="50">
<tr> 
<td width="40%" align="center"><strong><font color="#0000FF"><%=rs("STUDENT_NAME")%>同学你好,欢迎你进入选课系统!</font></strong></td>
<%call closeDB()%>
<td width="15%" align="center"><strong><a href="SelectCourse.asp" target="_top">
【刷新显示】</a></strong></td>
<td width="15%" align="center"><strong><a href="../default.asp?Act=changePsw" target="_parent">
【修改密码】</a></strong></td>
<td width="15%" align="center"><strong><a href="../LogIn/verifyID.asp?Act=logout" target="_parent">
【退出系统】</a></strong></td>
<td width="15%" align="center"><strong><a href="../" target="_parent">
【返回首页】</a></strong></td>
</tr>
</table>
</body>
</html>