⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showvotedetails1.asp

📁 这是我根据动网新闻核心自行设计的校园新闻系统
💻 ASP
字号:
<!-- #include file="../inc/const.asp" -->
<!-- #include file="../inc/conn.asp" -->
<!-- #include file="../inc/function.asp" -->
<!-- #include file="../inc/vote_function.asp" -->
<!-- #include file="../inc/config.asp" -->

<%
dim votedetail()
dim votetitle
dim votecount
dim votetotalcount
i=1
set rs=conn.execute("select votetitle,(select count(id) from vote_details where voteid="&FormatText(request("voteid"))&"),(select sum(votecount) from vote_details where voteid="&FormatText(request("voteid"))&") from vote_vote where id="&FormatText(request("voteid")))
votetitle=rs(0)
votecount=rs(1)
votetotalcount=rs(2)
redim votedetail(votecount,2)
rs.close
set rs=conn.execute("select votedetail,votecount from vote_details where voteid="&FormatText(request("voteid")))
do while not rs.eof
	
	votedetail(i,1)=rs(1)
	votedetail(i,2)=rs(0)
	i=i+1
	rs.movenext
loop
rs.close
set rs=nothing
call connclose


%>
<head>
<link rel="stylesheet" type="text/css" href="../Inc/styles.css">
<title><%=votetitle%></title>
</head>
<body <%=show_votedetails_body%>>
<div align="center">
	<a target="_blank">
	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="97">
      <param name="movie" value="../../../image/top.SWF">
      <param name="quality" value="High">
      <embed src="../../../image/top.SWF" quality="High" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="97"></embed>
    </object>
	</a>
	<table border="0" cellpadding="0" style="border-collapse: collapse" width="98%" id="table1">
		<tr>
			<td height="30" >
			<p align="center"><font <%=show_votedetails_title%>><%=votetitle%></font></td>
		</tr>
		<tr>
			<td align=center>
			<%call table4(votedetail,show_votedetails_tablewidth)%>&nbsp; 
			</td>
		</tr>
		<tr>
			<td height="30">
			<p align="center"><%=show_votedetails_foot%><font <%=show_votedetails_totalcount%>><%=votetotalcount%></font></td>
		</tr>
	</table>
</div>
</body>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -