| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 681 人关注过本帖
标题:投票限制问题
取消只看楼主 加入收藏
hamren
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-8-28
结帖率:0
收藏
已结贴  问题点数:10 回复次数:1 
投票限制问题
<!--#include file="Inc/conn.asp"-->
<%
'///检测投票开关
sql="Select info from Mu where id=4"
set t=conn.execute(sql)
if t(0)="关" then
    Response.write "<script language='javascript'>alert('投票已关闭');history.go(-1);</script>"
    Response.End()
end if

function getip() '获得客户端IP
    getip=Request.ServerVariables("REMOTE_ADDR")
end function

function cip(ip,id,vt) '检测指定IP,指定日期是否投过指定ID的票
    sql="Select * from vote where ip='"&ip&"' and pid="&id&" and vtime=#"&vt&"#"
    'Response.Write(sql)
    'Response.End()
    Set rs2=conn.execute(sql)
    if not rs2.eof then
        cip=true
    else
        cip=false
    end if
end function

sub jip(ip,vt,id) '记录投票信息
    sql="Insert into vote(ip,vtime,pid) values('"&ip&"',#"&vt&"#,"&id&")"
    conn.execute(sql)
end sub

sub delip(vt) '删除指定时间之前的投票信息
    sql="delete from vote where vtime<#"&vt&"#"
    conn.execute(sql)
end sub

'==========================================
id=Request("id")
if id="" or id=null or not isnumeric(id) then
    Response.write "<script language='javascript'>alert('参数错误');history.go(-1);</script>"
    Response.End()
end if
call delip(date()) '删除前一天的投票数据

ip=getip() '获得客户IP
if cip(ip,id,date())=true then '检测指定IP在今天是否给指定的ID投过票
    Response.write "<script language='javascript'>alert('您的IP"&ip&"在今日已经给他投票,不能继续投票!');history.go(-1);</script>"
    Response.End()
end if

set rs=server.createobject("adodb.recordset")
rs.Open "Select * from photo where id="&id,conn,1,3
if rs.eof then
    Response.write "<script language='javascript'>alert('参数错误');history.go(-1);</script>"
    Response.End()
else
rs("hit")=rs("hit")+1
rs.update
end if

rs.Close
Set rs=nothing

call jip(ip,date(),id) '记录投票信息

Response.Redirect("Vote_do.asp?id="&id)
%>



现在实现的是一天对一个人物投1票,我要的效果是一天对一个人物投1票,并限投10人,怎么做到呢???
求修改~谢谢~
搜索更多相关主题的帖子: 投票 
2010-08-28 12:26
hamren
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-8-28
收藏
得分:0 
能帮我修改一下么?大哥
2010-08-28 17:42
快速回复:投票限制问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.036273 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved