sub hd1()
'response.Write("<font color=red>现在在hd1()函数</font>")
if session("checkpage")="" or session("aid")="" then
call out()
end if
dim ok1,ok2
if request("R1")=session("aok") then '答案正确 这是单项选择的判断
你的意思多项就可以改成
sub hd1()
'response.Write("<font color=red>现在在hd1()函数</font>")
if session("checkpage")="" or session("aid")="" then
call out()
end if
dim ok1,ok2,R1
R1 = request.form("R1")
R1 = replace(R1," ","")
if request("R1")=session("aok") then '答案正确