📄 wap_save.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
'┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
'┃ 奇网天下·7WAP企业(移动)信息系统 ┃
'┃ ┃
'┃ Copyright All Rights Reserved. ┃
'┃ 官方: www.7wap.cn ┃
'┃ 作者: 孙岩清 ┃
'┃ 授权: BEAT版 未经授权不得商业使用。 ┃
'┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
'┃ Version 1.0 ┃
'┃ Description 开发建议/使用问题/扔砖头:BBS.7WAP.CN ┃
'┃ Create 2005.11.18 beat3 ┃
'┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
%>
<!--#include file=conn.asp-->
<%
If trim(request("title")) = "" or trim(request("detail")) = "" then
response.redirect "wap_ADD.asp"
response.end
end if
dim sql
Sql="INSERT INTO news(ntitle, ndetail,nclass,ntime) values('"&trim(request("title"))&"', '"&trim(request("detail"))&"', '"&trim(request("class"))&"','"&now()&"')"
Cn.Execute Sql
cn.close
set cn=nothing
response.redirect "wap_suc.asp"
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -