JzVote.asp
上传用户:angela
上传日期:2022-05-11
资源大小:853k
文件大小:2k
源码类别:

外挂编程

开发平台:

ASP/ASPX

  1. <!--#include file="Inc/Cls_Conn.asp"-->
  2. <!--#include file="Inc/Cls_Config.asp"-->
  3. <%
  4. '=====================================================================
  5. ' 作者声明:转载请保留版权信息,鄙视不要脸的人
  6. '=====================================================================
  7. ' 程序名称:蓝宇网络发布系统
  8. ' 软件版本:Version 3.3.0 Sp1
  9. ' 程序作者:蓝宇 QQ:18159079 ╲、随心゛ QQ:6821845
  10. '=====================================================================
  11. ' 联系方式:Tel:13203117383,QQ:18159079,hi.baidu.com/hezeyu
  12. ' 程序开发:蓝宇,╲、随心゛
  13. ' 官方网站:蓝宇网络(http://hi.baidu.com/hezeyu)
  14. '=====================================================================
  15. ' Copyright 2004-2007 蓝宇 - All Rights Reserved.
  16. '=====================================================================
  17. Dim SS, Limit, No_Ok, IP, id
  18.   Set conn=Server.CreateObject("ADODB.Connection")
  19.   conn.open ConnStr
  20.   IF Request.Form("IsSub")="YES" THEN
  21.     SS=Request.Form("SS")  '家族序号
  22.     Set rs=conn.execute("Select Limit From Gq_Jzdata Where ID="&SS) 
  23. Limit=Cint(rs(0))
  24.     rs.close
  25.     No_Ok=False
  26.     IF Limit=1 THEN
  27.       IF Request.Cookies("Gq_No_"&SS)="DONE" THEN
  28.        No_Ok=True
  29.       ELSE
  30. Response.Cookies("Gq_No_"&SS) = "DONE" 
  31. Response.Cookies("Gq_No_"&SS).Expires = date()+time()+TimeSerial(1,0,0) '设置cookie的过期日
  32.       END IF
  33.     ELSEIF Limit=2 THEN
  34.       conn.execute("delete from Gq_IP where datediff('d',time,now())>=1")
  35.       IP=Request.ServerVariables("REMOTE_ADDR")
  36.       rs.open "Select IP From Gq_IP Where id="&SS,conn,1,1
  37.       IF rs.eof THEN
  38.         conn.execute "Insert Into Gq_IP(id,IP) Values("&SS&",',"&IP&",')"
  39.       ELSE
  40.         IF Instr(rs(0),","&IP&",") THEN
  41.           No_Ok=True
  42.         ELSE
  43.           conn.execute "Update Gq_IP Set IP='"&rs(0)&IP&",' Where id="&SS
  44.         end if
  45.       end if
  46.     end if
  47.     IF No_Ok=True THEN
  48.        Response.write "<script>alert('朋友!谢谢您对该家族的支持nn同一IP不允许一天内重复投票!');javascript:window.close()</script>" '这里自己可以设置下面基本上都不用改了
  49.     ELSE
  50.       FOR each id IN Request.Form("rc")
  51.         conn.execute "Update Gq_Jzdata Set hits=hits+1 where ulock<>0 and id="&id
  52.       NEXT
  53. rs.close
  54. set rs=nothing
  55. Response.write "<script>alert('谢谢您对该家族的支持');javascript:window.close()</script>" 
  56.     END IF
  57.   END IF
  58. call CloseConn()
  59. %>