📄 book_write.asp
字号:
<%
'#################################################################
'# 程序名称:逍遥留言本 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -