rcs.asp

来自「Flash+jsp 实现的投票系统 实现的投票系统 实现的投票系统 实现的投票系」· ASP 代码 · 共 16 行

ASP
16
字号
<!--#include file="conn.asp"-->
<% 
thisid=request("voteid")
if request.Cookies("vote"&thisid)="pubvote_"&thisid then 
	Response.Write("&back=你已经参与过此投票,谢谢")
	closedb
else
	response.Cookies("vote"&thisid)="pubvote_"&thisid
	response.Cookies("vote"&thisid).expires="2008/10/26"
	response.Cookies("vote"&thisid).domain=request.ServerVariables("SERVER_NAME")
	cs=request("mychoose")
	conn.execute "update votepro set cs_"&cs&"_num=cs_"&cs&"_num+1 where id="&thisid
	Response.Write("&back=投票已经送达,谢谢参与")
	closedb
end if
%>

⌨️ 快捷键说明

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