请解释下这段ASP代码的意思

dimAction,ID,VoteType,VoteOption,arrOptions,sqlVote,rsVotedimVoted,VotedID,arrVotedID... dim Action,ID,VoteType,VoteOption,arrOptions,sqlVote,rsVote
dim Voted,VotedID,arrVotedID,i
dim FoundErr,ErrMsg

VoteOption=trim(request("VoteOption"))

if instr(VoteOption,",")>0 then
arrOptions=split(VoteOption,",")
for i=0 to ubound(arrOptions)
conn.execute "Update Vote set answer" & cint(trim(arrOptions(i))) & "= answer" & cint(trim(arrOptions(i))) & "+1 where id=4"
next
else
conn.execute "Update Vote set answer" & VoteOption & "= answer" & VoteOption & "+1 where id=4"
end if

if err then
response.Write("<script language=javascript>alert('保存失败');location='试验.asp';</script>")
else
response.Write("<script language=javascript>alert('保存成功');location='试验.asp';</script>")
end if
上一页是:
<form action="shiyan_vot.asp" method="post">
<table width="200" border="1">
<tr>
<td><input name="VoteOption" type="checkbox" value="1" />123</td>
</tr>
<tr>
<td><input name="VoteOption" type="checkbox" value="2" />143</td>
</tr>
<tr>
<td><input name="VoteOption" type="checkbox" value="3" />444</td>
</tr>
<tr>
<td><input name="VoteOption" type="checkbox" value="4" />555</td>
</tr>
<tr>
<td><input name="VoteOption" type="checkbox" value="5" />666</td>
</tr>
<tr>
<td><input name="" type="submit" /></td>
</tr>
</table>
</form>
如果FORM中没选的话,是怎么剔除的。上面的代码是怎么遍历数组的,那些是数组的内容,例:(内容1,内容2);那些是数组的排名(第一字段,第二字段),最好详细点,怎么进数据库的,能多说就多说点,详细的有加分 ,提示answer1、2、3是数据库里计数的字段,选择了就加1
展开
 我来答
闪电仙人球
推荐于2016-05-01 · TA获得超过2206个赞
知道大有可为答主
回答量:3553
采纳率:50%
帮助的人:1342万
展开全部
复选框提交后,浏览器会将所有选中的复选框内容合到一起,统一由VoteOption传递。
为了区分各个复选框内容,格式是“复选框内容1, 复选框内容2, .....”,其实就是用逗号+一个空格来隔开。

asp部分接收后用instr(VoteOption,",")来检查是否含有逗号,>0表示有逗号,说有几个复选框的内容在里面。

接着用split(VoteOption,",")函数通过逗号做分割将VoteOption内的文本拆分成数组。

for i=0 to ubound(arrOptions) 循环这个数组啦

conn.execute "Update Vote set answer" & cint(trim(arrOptions(i))) & "= answer" & cint(trim(arrOptions(i))) & "+1 where id=4"
循环一次执行一次conn.execute()写入数据库,arrOptions(i)就是数组第i个值,比如i=1,就是数组第1个值。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友e94bb46
2009-02-19 · TA获得超过616个赞
知道小有建树答主
回答量:821
采纳率:0%
帮助的人:730万
展开全部
if instr(VoteOption,",")>0 then '判断变量voteOption中是否包含“,”大于0表示包含“,”字符
arrOptions=split(VoteOption,",")'split(VoteOption,",")遍历数组分隔符是","
for i=0 to ubound(arrOptions) 'ubound(arrOptions) 获取arrOptions数组的最大下标
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式