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

    <!--#include file="../include/ADOVBS.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>
<%
set Comd=server.createobject("ADODB.Command")
call openDB()
set Comd.ActiveConnection=conn
Comd.CommandType=adCMdStoredProc
Comd.CommandText="BackUpArrange"
set Para1=Comd.CreateParameter("RESULT",adInteger,adParamOutput,4)
Comd.Parameters.Append Para1
Comd.Execute
if Comd("RESULT")=0 then
	call noInfo("选课表里面没有任何信息!")
end if
response.redirect "ArrangeCourse.asp"
%>
</body>
</html>