1.ͶƱ?投票投票???Դ??
2.怎样根据投票结果显示排行榜(ASP)(求详细点的)
3.投票系统的制作
4.求:限制同一IP重复投票asp源码,急!程序程序
ͶƱ????Դ??
我弄的,一个IP一天只能投票一次
。投票投票ag视讯源码改.,程序程序访问:flycentrury。com。源码源码core官方源码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
%>
怎样根据投票结果显示排行榜(ASP)(求详细点的程序程序)
主要是数据库里面的表和sql语句的用法,表的源码源码设计不多说了,sql语句为:select * from 表 order by hits(投票数) desc
就是投票投票asp源码排查说按照投票的多少降序排列,票多的程序程序就会排在上面!不知道你是否看懂我说的!
投票系统的制作
其实这种东西也是提交,只不过把事件写在了超链接按钮上了,源码源码点击就执行。办事指南源码
或者说是<a href="#" onmousedown=""></a>
你可以把那些东西当按钮看
求:限制同一IP重复投票asp源码,急!
<%
function getIP()
getIP = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
If getIP = "" The单词PHP源码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
%>
把以上代码放在你投票页的前面就行了