|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
优点:简单易学、开发速度快、有很多年“历史”,能找到非常多别人做好的程序来用、配合activeX功能强大,很多php做不到的asp+activeX能做到,例如银行安全控件信任有团体主页的网友,是否是很想晓得访客是怎样评价本人的作品,从而给本人一个改善偏向,上面的网上查询拜访就是个中一例:)
你必要撑持FSO的空间,只需两个文件,一是处置的页面poll.asp,另有一个是数据文件poll.txt,固然另有一个是显现提交表单的页面,上面分离给出代码:
1。poll.asp:
<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<title>本站查询拜访</title>
<linkhref="news1.CSS"rel="stylesheet"type="text/css">
</head>
<body>
<p>
<%
dimpolled,total
dimpollper(4)
dimpollname(7)
dimpollnum(4)
polled=cint(Request.Form("select"))
setfs=Server.CreateObject("scripting.filesystemobject")
poll=server.MapPath("poll.txt")
settextar=fs.opentextfile(poll,1,0,0)
ifnotsession(polled)then
i=0
whilenottextar.atendofstream
getdata=textar.readline
pollname(i)=left(rtrim(getdata),7)
pollnum(i)=right(RTrim(getdata),4)
ifi=polledthen
j=cdbl(pollnum(i))+1
pollnum(i)=right(space(6)&trim(cstr(j)),7)
endif
i=i+1
wend
textar.close
settextar1=fs.createtextfile(poll,-1,0)
totle=0
forj=0to(i-1)
total=total+cdbl(pollnum(j))
textar1.writelinepollname(j)&pollnum(j)
next
textar1.close
%>
<spanclass="news1">你以为本站哪些中央必要改善?</span></p>
<%
forj=0to(i-1)
pollper(j)=cdbl(pollnum(j))/total
width=500*pollper(j)
%>
<tablewidth="750"border="0"align="left">
<tr>
<tdalign="left"bgcolor="#CCCCCC">
<%Response.Write(trim(pollname(j))&"(")
Response.Write(formatnumber(pollnum(j),0)&")")
Response.Write("<br>")
Response.Write("<imgsrc=http://www.163design.net/a/y/images/bg1.gifwidth=")
Response.Write(width&"height=10>")
Response.Write(formatpercent(pollper(j))&"<p>")
next
Response.Write("总计:")
Response.Write(formatnumber(total,0))
%>
</td>
</tr>
</table>
<%
session(polled)=true
else
Response.Write("你已投过票了,感谢你的投票!")
endif
%>
<p></p>
</body>
</html>
2.poll.txt:
页面的美工27
内容的掩盖面35
内容的更新速率43
网站的会见量53
你要显现的页面(表单):
<tablewidth="100%"height="215"border="0"bordercolor="#FFFFFF"background="%20">
<tr>
<tdheight="20"align="center"background="http://www.163design.net/a/y/images/bg1.gif"class="1">你以为本站哪些中央需改善?</td>
</tr>
<tr>
<tdheight="20"bgcolor="#FFFFFF"class="1"><inputname="select"type="radio"value="0"checked>
页面的美工</td>
</tr>
<tr>
<tdheight="20"background=""bgcolor="#FFFFFF"class="1">
<inputtype="radio"name="select"value="1">
内容的掩盖面</td>
</tr>
<tr>
<tdheight="20"bgcolor="#FFFFFF"class="1"><inputtype="radio"name="select"value="2">
内容的更新速率</td>
</tr>
<tr>
<tdheight="20"background=""bgcolor="#FFFFFF"class="1">
<inputtype="radio"name="select"value="3">
网站的会见量</td>
</tr>
<tr>
<tdheight="66"align="center"bgcolor="#FFFFFF&qu</p>缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。 |
|