📄 delgroup.asp
字号:
<% Option Explicit %>
<!--#include file="conn.asp" -->
<%
Server.ScriptTimeout = 1000
Dim intStartGroupID
Dim intDeleteUserGroupID
intDeleteUserGroupID = CInt(Request.QueryString("gid"))
If intDeleteUserGroupID <> "" Then
strSQL = "SELECT timesgrp.grpid FROM timesgrp WHERE timesgrp.startgrp = True;"
rsConn.Open strSQL, adoCon
intStartGroupID = CInt(rsConn("grpid"))
strSQL = "UPDATE timesuser SET "_
& "timesuser.grpid = " & intStartGroupID & " "_
& "WHERE timesuser.grpid = " & intDeleteUserGroupID & ";"
adoCon.Execute(strSQL)
strSQL = "DELETE FROM timesaccess WHERE timesaccess.grpid =" & intDeleteUserGroupID & ";"
adoCon.Execute(strSQL)
strSQL = "DELETE FROM timesgrp WHERE timesgrp.grpid =" & intDeleteUserGroupID & ";"
adoCon.Execute(strSQL)
rsConn.Close
End If
Set rsConn = Nothing
adoCon.Close
Set adoCon = Nothing
Response.Redirect("disgroup.asp")
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -