book_write.asp

来自「商机网站8.0,比教完整,可以自己二次开发!」· ASP 代码 · 共 28 行

ASP
28
字号
<%
'#################################################################
'# 程序名称:逍遥留言本 V1.0
'# 授权方式:免费软件
'# 作者:逍遥浪子
'# 演示及技术支持:http://www.buyok.net/xybook
'# 电子邮箱:buyok@buyok.net
'# 发布时间:2005-4-8
'# 声明:本程序由逍遥浪子独立自主开发,保留所有版权。
'# 各种用途均可免费使用、自由传播,但必须保留程序代码中的版权信息。
'#################################################################
%>
<!--#include file="book_conn.asp"-->
<%
if request("send")="ok" then

	username=trim(request.form("username"))
	usermail=trim(request.form("usermail"))

	if username="" or usermail="" or request.form("Comments")="" then
	response.write "<script language='javascript'>"
	response.write "alert('必须填写用户名、邮箱、留言内容,请检查是否填写完整!');"
	response.write "location.href='javascript:history.go(-1)';"
	response.write "</script>"
	response.end
	end if

	if Instr(username,"=")>0 or Instr(username,"%")>0 or Instr(username,chr(32))>0 or Instr(username,"?")>0 or Instr(username,";")>0 or Instr(username,",")>0 or Instr(username,"'")>0 or Instr(username,chr(34))>0 or Instr(username,chr(9))>0 or Instr(username,"

⌨️ 快捷键说明

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