📄 pollcandadd.asp
字号:
<%@ LANGUAGE=VBScript%>
<%Server.ScriptTimeout=1000
Response.Expires=0
if Session("a_c_user_name")="" then
Response.write "<b>[操作失败]</b><p>您尚未登录(或已经超时退出),不能进行此操作!"
Response.end
end if
if Session("a_c_user_level")<10 then
Response.Write "<b>[操作失败]</b><p>您没有添加候选人的权限!"
Response.End
end if
addname=Server.HTMLEncode(Trim(Request.Form("addname")))
if addname="" then
Response.Write "<b>[操作失败]</b><p>候选人名字为空,不能添加!<a href=javascript:history.go(-1)>【返回】</a>"
Response.End
end if
Set fs=CreateObject("Scripting.FileSystemObject")
pollfile=Server.Mappath("pollending.asp")
Set thisfile = fs.OpenTextFile(pollfile,1,False)
Dim poll()
count=0
do while not thisfile.AtEndOfStream
thisline=thisfile.Readline
Redim preserve poll(count)
poll(count)=thisline
count=count+1
loop
thisfile.close
hxrcz=0
for i=6 to count-1 step 2
if poll(i)=addname then
hxrcz=1
exit for
end if
next
if hxrcz=1 then
Response.Write "<b>[操作失败]</b><p>候选人:<font color=red>" & addname & "</font> 已存在,不能重复添加!<a href=javascript:history.go(-1)>【返回】</a>"
Response.End
end if
set thisfile=fs.CreateTextFile(pollfile)
for i=0 to count-1
thisfile.WriteLine poll(i)
next
thisfile.WriteLine addname
thisfile.WriteLine "0"
thisfile.Close
Set thisfile=nothing
Set fs=nothing%><html>
<head>
<title>添加候选人</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type='text/css'>
<!--
.p9 {line-height: 150%; font-size: 9pt;}
.p12 {line-height: 150%; font-size: 12pt;}
body {line-height: 150%;font-size : 12pt;}
td {line-height: 150%;font-size : 12pt;}
A {text-decoration: none;}
A:Hover {text-decoration : none;}
a:visited { color: #0000FF}
-->
</style>
</head>
<body bgcolor="FFFFFF">
<h1 align="center"><font color="0099FF">【添加候选人】</font></h1>
<hr noshade size="1" color=009900>
<p><b>[操作完成]</b></p>
<blockquote>
<p>已经添加候选人:<font color="#FF0000"><%=addname%></font> !<a href="javascript:history.go(-1)">【返回】</a>
</p>
</blockquote>
<hr noshade size="1" color=009900>
<div align="center" class="p9"><script src="use.asp"></script> <script src="sn.asp"></script><br><script src="copyright.asp"></script></div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -