wap_save.asp
来自「1.手机浏览2.手机发布3.手机搜索4.栏目二级分类5.中文/英语操作支持」· ASP 代码 · 共 29 行
ASP
29 行
<%@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 + =
减小字号Ctrl + -
显示快捷键?