wap_save.asp
来自「新的简单易用的公司管理系统」· ASP 代码 · 共 15 行
ASP
15 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#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 + -
显示快捷键?