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

    <%response.buffer=true%>
<!--#include file="../../include/keepHouse.asp"-->
<!--#include file="../../include/header.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>
<%
call insureID()
dim NOTICE_TITLE,NOTICE_CONTENT
NOTICE_TITLE=request("NOTICE_TITLE")
NOTICE_CONTENT=request("NOTICE_CONTENT")
NOTICE_HOT=request("NOTICE_HOT")
if NOTICE_TITLE="" and NOTICE_CONTENT="" then
	call trigErr()
end if
if NOTICE_HOT="" then
	NOTICE_HOT="1"
end if
sql="INSERT INTO CourseSelectNotice VALUES ('"&NOTICE_TITLE&"','"&NOTICE_CONTENT&"',GETDATE(),'"&NOTICE_HOT&"')"
'call Debug(sql)
call openDB()
conn.execute(sql)
call noInfo("添加成功!")
%>
<!--#include file="../../include/footer.asp"-->
</body>
</html>