分享
 
 
 

ASP+VML+DB实现投票统计项目。

王朝asp·作者佚名  2006-12-16
窄屏简体版  字體: |||超大  

几个月前我看到过一位网友lshdic写的一篇用JS+VML的《使用 Vml 制作立体柱状投票统计图的完整程序》。

我觉得这个方法非常不错,可以不使用图片就生成统计图,现在就让我们一起来用ASP实现这个程序。

准备工作:用ACCESS建立一个MDB数据库,名为vote.mdb,并且在数据库中建立如下两个表:

然后建立我们按照ASP开发的惯例建立连接数据库的文件conn.asp

<%

'conn.asp

Set conn=Server.CreateObject("ADODB.Connection")

conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq="& Server.MapPath("vote.mdb")

%>

显示投票项目的列表,因为我们要制作的是一个多项目的投票系统vote_list.asp

<!--#include file="conn.asp"-->

<html>

<head>

<title>投票项目列表</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<link href="../images/main.css" rel="stylesheet" type="text/css">

</head>

<%

set rs=conn.execute("select * from votetitle order by voteid desc")

%>

<table border=1 cellspacing="0" style="border-collapse: collapse" cellpadding="0" bgcolor="#ffffff" bordercolor="#000000" width=100%>

<tr>

<td bgcolor="#EFEFEF">所有投票列表</td>

</tr>

<%do while not rs.eof%>

<tr>

<td>编号:<font color="#FF0000"><%=rs("voteid")%>&nbsp; </font><a href="vote.asp?voteid=<%=rs("voteid")%>" target="_blank"><%=rs("votetitle")%>

</a>(<%=rs("time")%>)</td>

</tr>

<%rs.movenext

loop

rs.close

set rs=nothing%>

</table>

</body>

</html>

投票显示页面vote_show.asp

<%if request("voteid")="" then

response.write "参数没有指定。"

response.End()

end if%>

<!--#include file="conn.asp"-->

<html>

<head>

<title>查看结果</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<STYLE>

td{font-size:12px}

body{font-size:12px}

v\:*{behavior:url(#default#VML);} //这里声明了v作为VML公用变量

</STYLE>

<link href="../images/main.css" rel="stylesheet" type="text/css">

</head>

<%

dim voteid

voteid=request("voteid")

set rs=conn.execute("select count from vote,votetitle where votetitle.voteid="&voteid&" and vote.voteid=votetitle.voteid order by id")

iii=0

do while not rs.eof

ii=ii+1

if ii=1 then

ceocio=trim(rs("count"))

ceocio1=trim("array1["&iii&"]")

else

ceocio=trim(ceocio&","&rs("count"))

ceocio1=trim(ceocio1&"+array1["&iii&"]")

end if

iii=iii+1

rs.movenext

loop

rs.close

set rs=nothing

'response.write ii

'response.write ceocio1

%>

<script>

array1=new Array(<%=ceocio%>) //不同的投票票数

allstr=<%=ceocio1%>

//alert(allstr)

//allstr=array1[0]+array1[1]+array1[2]+array1[3]+array1[4]+array1[5] //得到总数

for(i=0;i<=<%=(ii-1)%>;i++){

mathstr=Math.round(100/(allstr/array1[i])) //求百分之几, 100/(总和/单个)

document.write ("<v:rect fillcolor='lime' style='width:20;color:navy;height:"+500*<%=(ii-1)%>/(1000/mathstr)+"'><br>&nbsp;%"+mathstr+"<br>"+array1[i]+"人<v:Extrusion backdepth='15pt' on='true'/></v:rect>")

}

</script>

<%

voteid=request("voteid")

set rs=conn.execute("select * from vote,votetitle where votetitle.voteid="&voteid&" and vote.voteid=votetitle.voteid order by id")

%>

<table border=1 cellspacing="0" style="border-collapse: collapse" cellpadding="2" bgcolor="#ffffff" bordercolor="#000000" width=100%>

<tr>

<td bgcolor="#EFEFEF">关于:<font color="#FF0000"><%=rs("votetitle")%></font>的调查结果:<br>

共有<b><font color="#FF0000"><%=rs("total")%></font></b>人参与调查<br>

(<%=rs("time")%>到<%=date%>)</td>

</tr>

<%do while not rs.eof

dim i

i=i+1%>

<tr>

<td>选项<%=i%>:<%=rs("title")%> &nbsp;&nbsp;&nbsp; <font color="#FF0000"><%=rs("count")%>人</font></td>

</tr>

<%rs.movenext

loop

rs.close

set rs=nothing%>

<tr>

<td> </td>

</tr>

</table>

<br>

<a href="vote_list.asp">查看过往投票</a> <br>

<a href="vote.asp?voteid=<%=request("voteid")%>">投票本项目</a>

</body>

</html>

||||||vote.asp

<!--#include file="conn.asp"-->

<%if request("voteid")="" then

set rs=conn.execute("select top 1 voteid from votetitle order by voteid desc")

voteid=rs("voteid")

rs.close

set rs=nothing

else

voteid=request("voteid")

end if%>

<html>

<head>

<title>Untitled Document</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<link href="style.css" rel="stylesheet" type="text/css">

</head>

<body>

<%

if request("action")="vote" then

'加上","&request("voteid")","为了不使id为1的投票和id为11的投票混遐

if instr(request.cookies("vote"),","&request("voteid")&",")=0 then

else

response.write "你已经投过票了"

response.end

end if

sql="update [vote] set count=count+1 where id="&request("votevalue")

conn.execute(sql)

sql="update [votetitle] set total=total+1 where voteid="&request("voteid")

conn.execute(sql)

'写入cookies有效期

Response.Cookies("vote").Expires=Date+1

'将已经投票的选项全部记录在cookies,用,号隔开。

Response.Cookies("vote")=","&Request.Cookies("vote")&","&Request("voteid")&","

voteid=request("voteid")

'转向基本

response.redirect "vote_show.asp?voteid="&voteid

end if

%>

<%

'dim voteid

'voteid=request("voteid")

set rs=conn.execute("select * from vote,votetitle where votetitle.voteid="&voteid&" and vote.voteid=votetitle.voteid order by id")

%>

<table border=1 cellspacing="0" style="border-collapse: collapse" cellpadding="0" bgcolor="#ffffff" bordercolor="#C0C0C0" width=100%>

<tr>

<td colspan="2" bgcolor="#EFEFEF">调查:<%=rs("votetitle")%>(<%=rs("time")%>)</td>

</tr><form name="form1" method="post" action="vote.asp?action=vote&voteid=<%=voteid%>">

<%do while not rs.eof

dim i

i=i+1%>

<tr>

<td colspan="2">

<input type="radio" name="votevalue" value="<%=rs("id")%>" <%if i=1 then%>checked<%end if%>>

<%=rs("title")%>

</td>

</tr>

<%rs.movenext

loop

rs.close

set rs=nothing%>

<tr>

<td colspan="2">

<%if instr(request.cookies("vote"),","&voteid&",")=0 then%>

<input type="submit" name="Submit" value="Vote"></form>

<%else%>

<font color="#FF0000">您已经投过票了</font>

<%end if%></td>

</tr>

</table>

<br>

<a href="vote_list.asp">查看过往投票</a> <br>

<a href="vote_show.asp?voteid=<%=voteid%>">查看本投票的结果</a>

</body>

</html>

后台管理页面admin_vote_list.asp

<!--#include file="conn.asp"-->

<%'添加管理员权限在这里,这里为了大家应用方便,我没有加验证就直接允许进入%>

<html>

<head>

<title>投票项目列表</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<link href="style.css" rel="stylesheet" type="text/css">

</head>

<body>

<%

'删除模块

dim action

action=request("action")

if action="del" then

Dim StrSQL1,StrSQL2

StrSQL1="delete from vote where voteid="&request("voteid")

conn.Execute StrSQL1

StrSQL2="delete from votetitle where voteid="&request("voteid")

conn.Execute StrSQL2

response.Redirect "?"

end if

'修改模块

'/////////////////////

'修改表单

if action="add" then

%>

<table border=1 cellspacing="0" style="border-collapse: collapse" cellpadding="0" bg

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有