action.asp

来自「动态扇形统计图」· ASP 代码 · 共 14 行

ASP
14
字号
<!--#include file="conn.asp"-->
<%itemname=request.Form("itemname")
if not itemname="" then
itemname=split(itemname,",")
for i = 0 to ubound(itemname)
	call delit(itemname(i))
next
end if
response.Redirect("index.asp")
sub delit(itemname)
sql="update bing set numcount=numcount+1 where itemname='"&itemname&"'"
cn.execute sql
'response.Write(sql&"<br>")
end sub%>

⌨️ 快捷键说明

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