當前位置:首頁 » 操作系統 » asp源碼投票

asp源碼投票

發布時間: 2022-03-15 02:17:23

❶ asp投票系統(源碼+論文+er圖)

網上找了下,不就行了
不過插件類型居多

❷ ASP 投票系統

For your topicASP 投票系統,
聯系我們需要提供問題和聯系方式,
還有別的要求么,可以與我們聯系,
有可能幫你,
使用網路_Hi給我留言,
此回復對於所有需求和和來訪者有效,
ES:\\

❸ asp投票系統

自已寫一個吧,簡單死了.
http://www.aspjzy.com/9035.html
這個很好.
能用要給分啊.

❹ ASP投票代碼

<%@
language="vbscript"%>
<%response.Expires
=
0%>
<!--#include
file="conn.asp"-->
<%
id=request.querystring("id")
call
isid(id)
set
rs=conn.execute("select
*
from
[VoteTitle]
where
id="&id)
%>
<html>
<head>
<title><%=rs("votetitle")%>--------在線投票代碼</title>
<meta
http-equiv="Content-Type"
content="text/html;
charset=gb2312">
<style>
td,input{
font-size:
12px;
}
.table
{
border:
1px
solid
#eeeeee;
font-family:
"宋體",
Tahoma;
}
</style>
</head>
<body
leftmargin="0"
topmargin="0"
marginwidth="0"
marginheight="0"
onLoad="parent.window.document.all.dd.height=document.body.scrollHeight">
<form
name="form1"
method="post"
action="http://www.ztjjw.com/testweb/VoteGo.asp
"
target="_blank">
<table
width="800"
border="0"
cellspacing="0"
cellpadding="3"
align="center"
class="table">
<tr
bgcolor="#efefef">
<td
height="30"
class="26"><font
color="#43379D">主題:</font><%=rs("votetitle")%></td>
</tr>
<tr>
<td
>
<table
width="100%"
border="0"
cellspacing="0"
cellpadding="0">
<tr>
<%
set
rs1=conn.execute("select
*
from
[VoteSelect]
where
titleid="&id)
do
while
not
rs1.eof%>
<td
width="800"
height="30"
nowrap>
<%if
rs("votetype")=1
then%>
<input
type="radio"
name="options"
value="<%=rs1("id")%>">
<%else%>
<input
type="checkbox"
name="options2"
value="<%=rs1("id")%>">
<%end
if%>
<%=rs1("selectitem")%>
<%rs1.movenext
loop%>
</tr></table></td>
</tr>
<tr>
<td
height="40"
align="right">
<div
align="left">
<input
name="titleid"
type="hidden"
id="titleid"
value="<%=rs("id")%>">
<input
name="iptype"
type="hidden"
id="iptype"
value="<%=rs("iptype")%>">
<input
name="votetype"
type="hidden"
value="<%=rs("votetype")%>">
<input
type="submit"
name="Submit2"
value="投票">
<input
type="button"
name="Button"
value="查看結果"
onClick="window.open('http://www.ztjjw.com/testweb/voteResult.asp?titleid=<%=id%>')">
</div></td>
</tr>
</table>
</form>
</body>
</html>

❺ 求完善的ASP源代碼,要求有登陸界面,投票界面,返回首頁

你是在學習asp.net吧
這個題目應該是你們的作業。要連資料庫嗎?

❻ 誰可以給個ASP投票系統的代碼啊要求:

http://down.chinaz.com/s/14496.asp
下載地址

❼ 求ASP投票系統

表一:【Vote】
1-ID【ID】自動編號
2-名稱【Title】文本255
3-關聯ID【GLID】數值:關聯信息的ID以便在顯示時區分不同信息的投票內容表二:【VoteInfo】
1-ID【ID】自動編號
2-名稱【Title】文本255
3-點擊量【Click】數值
4-關聯ID【GLID】數值:關聯表一的ID。建立多個投票選項
5-分數【Score】數值:單個選項的分數,-100~100
6-圖標地址【ICOFile】文本255:顯示圖標的地址。建立原理:
製作顯示的圖片。
pic001a.gif 最大值的紅色圖
pic001b.gif 一般值得的圖片
表一的GLID值不能為空。這個值是你的信息的ID值<%
'連接數據內容省略
%><!--#include file = Conn.asp --><%
'Infoid為你信息的ID
if Infoid<>"" then
sqlVote = "select * from Vote where Title<>''"
sqlVote = sqlVote &" and [GLID]="&Infoid
Set rsVote = Server.CreateObject("ADODB.RecordSet")
rsVote.Open sqlVote,conn,1,1
if rsVote.recordcount<>0 then '最高記錄數
sqlmax="select max(Click) as maxClick from VoteInfo"
Set rsmax = Server.CreateObject("ADODB.RecordSet")
rsmax.open sqlmax,conn,1,1
Max_Click=int(rsmax("maxClick"))
rsmax.close
set rsmax=nothing

sqlVoteInfo = "select * from VoteInfo where Title<>''"
sqlVoteInfo = sqlVoteInfo &" and [GLID]="&rsVote("ID")
Set rsVoteInfo = Server.CreateObject("ADODB.RecordSet")
rsVoteInfo.Open sqlVoteInfo,conn,1,1
if rsVoteInfo.recordcount<>0 then
%>
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="120">
<tr>
<%
for VoteInfoi=1 to rsVoteInfo.recordcount'Max_Click最大的一個數值為100'這里可以加N個條件來顯示圖的結果。
if rsVoteInfo("Click")=Max_Click then
InfoIMG="pic001a.gif"
else
InfoIMG="pic001b.gif"
end if
%>
<td height="100">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="120">
<tr>
<td height="100" width="100%" valign=bottom align=center>
<%=rsVoteInfo("Click")%>
<br>
<img src="<%=InfoIMG%>" height="<%=int(rsVoteInfo("Click")/Max_Click*100)%>" width="30">
</td>
</tr>
<tr>
<td height="20" width="100%">
<%=rsVoteInfo("Title")%>
</td>
</tr>
</table>
</td>
<%
rsVoteInfo.movenext
if rsVoteInfo.eof then exit for
next
%>
</tr>
</table>
<%
end if
rsVoteInfo.close
set rsVoteInfo=nothingend if
end if
rsVote.close
set rsVote=nothing
conn.close '關閉資料庫
set conn=nothing
%>

❽ 用ASP編寫一投票系統。。要求。。

前年給公司做了一個類似的,不過現在離職了,有代碼,沒把資料庫帶出來.

❾ 誰能提供一個用ASP做的在線投票系統源代碼啊!

你想要什麼樣子的?已經發到你郵箱了!去看下。
參考下,自己感覺不錯!!

❿ 投票系統php或者ASP簡單代碼

去一些源碼的網站,有投票分類的。直接下一個不就行了??

熱點內容
androidxml換行 發布:2024-09-25 15:05:59 瀏覽:113
plsql導出資料庫備份 發布:2024-09-25 14:54:49 瀏覽:667
androidndkwindows 發布:2024-09-25 14:53:25 瀏覽:534
銳普數控許可權密碼是多少 發布:2024-09-25 14:53:12 瀏覽:944
泛型編程java 發布:2024-09-25 14:08:06 瀏覽:982
linux配置環境變數文件 發布:2024-09-25 13:58:49 瀏覽:265
備份集中的資料庫備份與現有的不同 發布:2024-09-25 13:58:27 瀏覽:480
網路ip存儲伺服器 發布:2024-09-25 13:57:13 瀏覽:378
銀行存儲介質最終結果 發布:2024-09-25 13:55:41 瀏覽:111
linux顯卡信息 發布:2024-09-25 13:28:36 瀏覽:552