一聚教程网:一个值得你收藏的教程网站

热门教程

禁止垃圾注册的方法

时间:2022-07-02 23:19:06 编辑:袖梨 来源:一聚教程网

Public Function CheckNum(Str)
       If Str="" Then Exit Function
              If Session(Str)=False Then
                     RanDomize Timer
                     Session(Str)=Int(Rnd*9)+1
              End If
       CheckNum=Session(Str)
End Function
Function ValidInteger(str)
       If Str="" then Exit Function
       Dim re,chkstr
       Set re=new RegExp
       re.IgnoreCase =true
       re.Global=True
       re.Pattern="[^_.0-9d]"
       ValidInteger=True
       chkstr=re.Replace(Str,"")
       ValidInteger=IsInteger(chkstr)
End Function
Public Function IsInteger(Para)
       If Para="" then Exit Function
       IsInteger=False
       If Not (IsNull(Para) Or Trim(Para)="" Or Not IsNumeric(Para)) Then IsInteger=Para
       'IsInteger=True
       'End If
End Function

验证

              inspect=ValidInteger(Request.Form("inspect"))       
        If inspect<>Trim(CheckNum("n1")+CheckNum("n2")) or (Isempty(CheckNum("n1")))then
          Response.Write ""
          response.End()   
     end if
Session("n1")=False:Session("n2")=False'消除验证码

显示页面

<%=CheckNum("n1")&"+"&CheckNum("n2")%>=

热门栏目