明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

用文件寫入創(chuàng)建容易的網(wǎng)上調(diào)查

[摘要]相信有個(gè)人主頁(yè)的網(wǎng)友,是不是很想知道訪客是怎么評(píng)價(jià)自己的作品,從而給自己一個(gè)改進(jìn)方向,下面的網(wǎng)上調(diào)查就是其中一例:)你需要支持FSO的空間,只需兩個(gè)文件,一是處理的頁(yè)面poll.asp,還有一個(gè)是數(shù)...

相信有個(gè)人主頁(yè)的網(wǎng)友,是不是很想知道訪客是
怎么評(píng)價(jià)自己的作品,從而給自己一個(gè)改進(jìn)方向,
下面的網(wǎng)上調(diào)查就是其中一例:)

你需要支持FSO的空間,只需兩個(gè)文件,一是處理
的頁(yè)面poll.asp,還有一個(gè)是數(shù)據(jù)文件poll.txt,當(dāng)
然還有一個(gè)是顯示提交表單的頁(yè)面,下面分別給出
代碼:

1。poll.asp:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>本站調(diào)查</title>
<link href="news1.css" rel="stylesheet" type="text/css">
</head>
<body>
<p>
  <%
dim polled,total
dim pollper(4)
dim pollname(7)
dim pollnum(4)
polled=cint(Request.Form("select"))
set  fs= Server.CreateObject("scripting.filesystemobject")
poll=server.MapPath("poll.txt")
set textar=fs.opentextfile(poll,1,0,0)
if not session(polled) then
 i=0
while not textar.atendofstream
 getdata=textar.readline
 pollname(i)=left(rtrim(getdata),7)
 pollnum(i)=right(RTrim(getdata),4)
 if i=polled then
    j=cdbl(pollnum(i))+1
 pollnum(i)=right(space(6)&trim(cstr(j)),7)
 end if
    i=i+1
wend
textar.close
set textar1=fs.createtextfile(poll,-1,0)
totle=0
for j=0 to (i-1)
  total=total+cdbl(pollnum(j))
  textar1.writeline pollname(j)&pollnum(j)
  next
  textar1.close
%>
  <span class="news1"> 你認(rèn)為本站哪些地方需要改進(jìn)?</span></p>
  <%
  for j=0 to (i-1)
pollper(j)=cdbl(pollnum(j))/total
     width=500*pollper(j)
 %>
<table width="750" border="0" align="left">
<tr>
<td align="left" bgcolor="#CCCCCC">
<%Response.Write(trim(pollname(j))&"(")
Response.Write(formatnumber(pollnum(j),0)&")")
Response.Write("<br>")
Response.Write("<img src='http://www.okasp.com/techinfo/images/bg1.gif' width=")
Response.Write(width&"' height=10>")
Response.Write(formatpercent(pollper(j)) &"<p>")
next
Response.Write("總計(jì):")
Response.Write(formatnumber(total,0))
%>
</td>
</tr>
</table>
<%
session(polled)=true
else
Response.Write("你已經(jīng)投過(guò)票了,謝謝你的投票!")
end if
%>
<p>&nbsp; </p>
</body>
</html>

2.poll.txt:

頁(yè)面的美工    27
內(nèi)容的覆蓋面   35
內(nèi)容的更新速度     43
網(wǎng)站的訪問(wèn)量   53

你要顯示的頁(yè)面(表單):

<table width="100%" height="215" border="0" bordercolor="#FFFFFF" background="%20">
<tr>
<td height="20" align="center" background="http://www.okasp.com/techinfo/images/bg1.gif" class="1">你認(rèn)為本站哪些地方需改進(jìn)?</td>
</tr>
<tr>
<td height="20" bgcolor="#FFFFFF" class="1"> <input name="select" type="radio" value="0" checked>
頁(yè)面的美工 </td>
</tr>
<tr>
<td height="20" background=" " bgcolor="#FFFFFF" class="1">
內(nèi)容的覆蓋面 </td>
</tr>
<tr>
<td height="20" bgcolor="#FFFFFF" class="1"> <input type="radio" name="select" value="2">
內(nèi)容的更新速度 </td>
</tr>
<tr>
<td height="20" background=" " bgcolor="#FFFFFF" class="1">
<input type="radio" name="select" value="3">
網(wǎng)站的訪問(wèn)量 </td>
</tr>
<tr>
<td height="66" align="center" bgcolor="#FFFFFF"><span class="1">
<input type="submit" name="Submit2" value="提交">
</span><a href="poll.asp">查看</a></td>
</tr>
</table>

是不是很簡(jiǎn)單,趕快自己做一個(gè)吧:)