📄 save.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
'============================================================
' 更新: 2007-12-10
' 主页: http://wap.twapp.cn
' 电邮: xivn@163.com
' Q Q : QQ:531233814
' 版权: 燃点真情All Rights Reserved.
'============================================================
%>
<%response.buffer=true%>
<%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<!-- #include file="../conn.asp" -->
<!--#include file="../admin.asp"-->
<wml>
<head>
<meta http-equiv='Cache-Control' content='no-cache'/>
</head>
<card title="添加栏目">
<p>
<%
classid=LCase(Request("classid"))
test=LCase(Request("test"))
user=LCase(Request("user"))
title=LCase(Request("title"))
set rs=server.createobject("adodb.recordset")
sql="select * from sms"
rs.open sql,conn,1,3
rs.addnew
rs("classid")=classid
rs("test")=test
rs("user")=user
rs("title")=title
rs.update
rs.close
set rs=nothing
conn.close
set conn=nothing
response.write "记录添加成功!"
%>
<br/>----------<br/>
<a href="add.asp?sid=<%=sid%>&id=<%=classid%>">[继续增加]</a>
<br/>
<a href="adminsmscl.asp?sid=<%=sid%>&id=<%=classid%>">[返回文章]</a><br/>
<a href="wzclass.asp?sid=<%=sid%>">[文章分类]</a>
<br/>
<a href="wzcl.asp?sid=<%=sid%>">[文章管理]</a>
<br/>
<a href="../index.asp?sid=<%=sid%>">[后台管理]</a>
</p>
</card>
</wml>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -