如何用ASP编写多项选择题的评分代码?
发布网友
发布时间:2023-03-24 03:38
我来回答
共1个回答
热心网友
时间:2023-10-16 04:55
给你提供一个思想:
假如答案一共有5项:ABCDE,其中正确答案为ACE
现在从表单中读得A,B,C,D,E的值,如果选中的话值为yes
下面是判断得分的原码
if B="yes" or D="yes" then
score=0
elseif a<>"yes" or C<>"yes" or E<>"yes" then
score=1
else
score=3'满分为3分的话
end if
response.write("本题得分:"&score)
---------------------------------------------
写成SUB过程进行调用。