📄 admin_class_p.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn_acc.asp" -->
<!--#include file="admin_check.asp" -->
<!--#include file="function.asp" -->
<%
on error resume next
Set Command1 = Server.CreateObject ("ADODB.Command")
Command1.ActiveConnection = MM_conn_comm_STRING
Command1.CommandText = "UPDATE firste_city SET f_p ="&Trim(Request.QueryString("fp"))&" WHERE fid ="&Trim(Request.QueryString("id"))
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()
if err then
call firste_error("错误的操作!",Request.QueryString("url"))
else
response.Redirect Request.QueryString("url")
end if
%>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -