⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delforum.asp

📁 电子商务网络购物系统
💻 ASP
字号:
<% Option Explicit %>
<!--#include file="conn.asp" -->
<%
Server.ScriptTimeout =  1000

Dim intForumID
Dim lngPollID

intForumID = CInt(Request.QueryString("fid"))
strSQL = "SELECT timestopic.* FROM timestopic WHERE timestopic.bbsid ="  & intForumID & ";"
rsConn.Open strSQL, adoCon
Do While NOT rsConn.EOF
	strSQL = "DELETE FROM timespost WHERE timespost.topicid ="  & CLng(rsConn("topicid")) & ";"
	adoCon.Execute(strSQL)
	lngPollID = CLng(rsConn("pollid"))
	If lngPollID > 0 Then
		strSQL = "DELETE FROM timeschoice WHERE timeschoice.pollid =" & lngPollID & ";"
		adoCon.Execute(strSQL)
		strSQL = "DELETE FROM timespoll WHERE timespoll.pollid =" & lngPollID & ";"
		adoCon.Execute(strSQL)
	End If
	rsConn.MoveNext
Loop
strSQL = "DELETE FROM timesaccess WHERE timesaccess.bbsid ="  & intForumID & ";"
adoCon.Execute(strSQL)
strSQL = "DELETE FROM timestopic WHERE timestopic.bbsid ="  & intForumID & ";"
adoCon.Execute(strSQL)
strSQL = "DELETE FROM timesbbs WHERE timesbbs.bbsid ="  & intForumID & ";"
adoCon.Execute(strSQL)
rsConn.Close
Set rsConn = Nothing
adoCon.Close
Set adoCon = Nothing
Response.Redirect "disforum.asp"
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -