delbadword.asp

来自「电子商务网络购物系统」· ASP 代码 · 共 14 行

ASP
14
字号
<% Option Explicit %>
<!--#include file="conn.asp" -->
<%
Dim iaryBadWordID
For each iaryBadWordID in Request.Form("chkWordID")
	strSQL = "DELETE FROM timesword WHERE (wordid ="  & CInt(iaryBadWordID) & ");"
	adoCon.Execute(strSQL)	
Next
Set rsConn = Nothing
adoCon.Close
Set adoCon = Nothing
Response.Redirect "badwordcfg.asp"
%>

⌨️ 快捷键说明

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