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

📄 repadd.asp

📁 基于IIS+ASP的
💻 ASP
字号:
<!--#include file="conn.asp"-->
<%
		title=trim(request("title"))
		content=trim(request("content"))
		
		if request("title")="" then
					Response.Write("<script>alert('请输入您的姓名!');history.back();</script>")
					response.End()
		end if
		if request("content")="" then
					Response.Write("<script>alert('请输入您的留言内容!');history.back();</script>")
					response.End()
		end if
		sql="insert into news(title,content,class) values('"&title&"','"&content&"','1')"
		conn.execute sql

		if err=0 then
								Response.Write("<script>alert('留言成功!');window.location='rep.htm';</script>")
								Response.end
		else
								Response.Write("<script>alert('留言失败!');history.back()</script>")
								Response.end
		end if
%>

⌨️ 快捷键说明

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