📄 show.asp
字号:
<!--#include file="config.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" style="css/text" href="style.css">
</head>
<body>
<%sql = "Select * From content"
set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn, 1, 1
dim totalnumber
totalnumber=0
do while not rs.eof
totalnumber=totalnumber+rs("number")
rs.movenext
loop
if totalnumber=0 then
response.write "还没有任何投票"
response.end
end if%>
<div align="center">
<center>
<table width="770" height="65" border="1" align="center" cellpadding="0" cellspacing="0" bordercolorlight="#669900" bordercolordark="#FFFFFF">
<tr bgcolor="#C1C9D0">
<td width="600" height="25" colspan="4" align="center"><%=webname%>共有<font color=red><b><%=totalnumber%></b></font>人参加了投票</td>
</tr>
<tr>
<td align="center" height="20" width="100"><font color="#008000">投票选项</font></td>
<td height="20" width="300" align="center"><font color="#008000">投票条形图</font></td>
<td align="center" height="20" width="100"><font color="#008000">投票人数分布</font></td>
<td align="center" height="20" width="100"><font color="#008000">投票人数百分比</font></td>
</tr>
<%sql = "Select * From content"
set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn, 1, 1
do while not rs.eof
number100=(rs("number")/totalnumber)*100%>
<tr>
<td width="100" align="center" height="20"><%=rs("content")%></td>
<td width="300" height="20"><img src=vote.gif width=<%=int(number100*3)%> height=10></td>
<td width="100" align="center" height="20"><%=rs("number")%></td>
<td width="100" align="center" height="20"><%=round(number100,2)%>%</td>
</tr>
<tr>
<%rs.movenext
loop
rs.close
set rs=nothing
%>
</table>
</center>
</div>
<div align="center">
<center>
<br>
</center>
</div>
<div align="center">
<center>
<table width="770" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="40" align="center" ><a href="javascript:this.close();"><font color="#FF0000">〖关闭〗</font></a></td>
</tr>
<tr>
<td height="40" align="center" ><table border="0" cellpadding="0" cellspacing="0" width="500" height="7">
<tr>
<td height="7" align="center"><br>
© 2003 copyright 中国安徽霍山县招商局<br>
<br>
网站全程技术支持:<a href="http://www.etwl.com.cn" target="_blank">易天工作室</a>
</td>
</tr>
</table></td>
</tr>
</table>
</center>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -