📄 delfriend.asp
字号:
<% Option Explicit %>
<!--#include file="conn.asp" -->
<%
Response.Buffer = True
Set rsConn = Nothing
If blnPrivateMessages = False Then
adoCon.Close
Set adoCon = Nothing
Response.Redirect("index.asp")
End If
If intGroupID = 2 OR blnActiveMember = False Then
adoCon.Close
Set adoCon = Nothing
Response.Redirect("nopermission.asp")
End If
strSQL = "DELETE FROM timesfriend WHERE (((timesfriend.userid)=" & lngLoggedInUserID & " ) AND ((timesfriend.addrid)= " & CLng(Request.QueryString("messid")) & "));"
adoCon.Execute(strSQL)
adoCon.Close
Set adoCon = Nothing
Response.Redirect "friendlist.asp"
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -