用ASP实现聊天室中的在线答题游戏(续)

类别:Asp 点击:0 评论:0 推荐:

答案处理部分,放在处理发送对话信息的程序中即可。下面是答案处理的代码部分:

if mid(FStr,i,1)="#" then       'FStr是保存对话信息的字符串变量
     TFstr=mid(FStr,i+1,1)
     if  CInt(DateDiff("n",application("questionTime"),Now()))<=1 then '判断时间1分钟内答题有效
         if LCase(TFstr)=LCase(application("answerTrue")) then            '判断答题是否正确
           if instr(1,application("answerName"),session("USER_USERNAME"))>0 then '判断用户是否已经答过题了
           TFstr=session("USER_USERNAME")&"已经答过这道了!!!"
           else
           TFstr=session("USER_USERNAME")&"答题正确!"
           Session("USER_EXP") =Session("USER_EXP")+application("questionCent")  '给答对题的用户加分
           application("answerName")=application("answerName")&session("USER_USERNAME")&" "  '保存答对题用户的名字
           end if
         else
           if instr(1,application("TanswerName"),session("USER_USERNAME"))>0 then ''判断用户是否已经答过题了

           TFstr=session("USER_USERNAME")&"已经答过这道了!!!"
           else
           application("TanswerName")=application("TanswerName")&session("USER_USERNAME")&" " '保存答错题用户的名字
           end if
         end if
        end if

本文地址:http://com.8s8s.com/it/it9351.htm