⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addnews_ok.asp

📁 报名系统
💻 ASP
字号:
<!--#include file="conn.asp"-->
<%
o_title=trim(request("o_title"))
o_content=trim(request("o_content"))
o_date=now()

if o_title="" then
    response.write"错误!!活动标题必须填写!!!<a href=""javascript:history.go(-1)"">返回</a>"
    response.end
end if
if o_content="" then
    response.write"错误!!活动内容必须填写!!!<a href=""javascript:history.go(-1)"">返回</a>"
    response.end
end if
		set rs=server.createobject("adodb.recordset")
        rs.open "select * from Activity",conn,1,3
		rs.addnew
		rs("o_content")=o_content
	    rs("o_title")=o_title
		rs.update
		rs.close
		set rs=nothing
		response.redirect "newslist.asp"
response.end
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -