1.ASP 高手把下面代码修改成同IP只限1个投票
2.高手进,投票ASP 根据IP判断投票全代码
3.求:限制同一IP重复投票asp源码,急!投票
ASP 高手把下面代码修改成同IP只限1个投票
获取IP地址的投票语句:
<%ip=request.ServerVariables("REMOTE_ADDR")%>
这个最好是将投票者的IP保存到数据库中,新投票查询IP如果存在数据库,投票禾匠微信小程序最新版源码则投票无效。投票
也可以将投票者的投票spring5.0源码IP保存到Cookie的话,需要对Cookie设置一个有效期时间,投票这个Cookie是投票保存在对应投票者的电脑中。(投票者清IE缓存可以去除Cookie)
高手进,投票ASP 根据IP判断投票全代码
我弄的,一个IP一天只能投票一次
。投票改.,投票访问:flycentrury。com。投票cn
如果选手机,投票源码能出售吗你选择的投票价位是:
……
你可以试验一下
以下是我按你的数据库改的源码
<%
function ips()
dim id
id=Request.ServerVariables("REMOTE_HOST")
if Request.ServerVariables("HTTP_X_FORWARDED_FOR")<>"" then
id=Request.ServerVariables("HTTP_X_FORWARDED_FOR")
end if
ips=id
end function
ip=ips()
set rc=server.CreateObject("adodb.recordset")
sql="select tptime,ip from ip where ip='"&ip&"' and tptime=#"&date()&"#"
rc.open sql,conn,1,1
aa=rc.recordcount
rc.close
set rc=nothing
if aa>0 then
Response.Write "<script>alert('您今天已经投过票啦!');this.location.href='javascript:window.close()';</SCRIPT>"
else
sql="update Vote set ps=ps+1 where id="&pid
conn.execute(sql)
conn.close
set conn=nothing
Response.Write "<script>alert('谢谢您的投票关注,投票成功!翻译网源码');this.location.href='javascript:window.close()';</SCRIPT>"
end if
%>
求:限制同一IP重复投票asp源码,急!
<%
function getIP()
getIP = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
If getIP = "" The汽车租借系统源码n getIP = Request.ServerVariables("REMOTE_ADDR")
end function
if Request.Cookies("mycookie")("userip")<>"" then
Response.Write "<script>alert('一个IP地址只能投一次票,谢谢您的参与!');history.go(-1);</script>"
response.End()
else
Response.Cookies("mycookie")("userip")=getIP()
Response.Cookies("mycookie").Expires=date+
end if
%>
把以上代码放在你投票页的前面就行了