📄 delgroup.asp
字号:
<!--#include file="../../Connections/oavbsconn.asp" -->
<%
if(session("userssdfgfhtrh") <> "") then Command1__u = session("userssdfgfhtrh")
if(request("id") <> "") then Command1__d = request("id")
%>
<%
set Command1 = Server.CreateObject("ADODB.Command")
Command1.ActiveConnection = MM_oavbsconn_STRING
Command1.CommandText = "DELETE FROM 通讯录组别 WHERE id=" + Replace(Command1__d, "'", "''") + " and 用户帐号='" + Replace(Command1__u, "'", "''") + "' "
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()
%>
<%response.redirect "addgroup.asp"%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -