用户登录
用户注册

分享至

防SQL注入的VBSrcipt代码

  • 作者: 吕夫斯基
  • 来源: 51数据库
  • 2021-09-28
<script language="vbscript"> 
        function checkstr(strname) 
            strn=trim(strname.value) 
            str=trim(strname.value) 
            for i=1 to len(str) 
                strcheck=asc(left(str,1)) 
                if not ((strcheck=<122 and strcheck>=97) or (strcheck<=90 and strcheck>=65) or (strcheck<=57 and strcheck>=48)) then 
                    msgbox("请勿使用除英文字母及数字以外的字符!") 
                    strname.value = left(strn,i-1) 
                    strname.focus 
                    exit for 
                end if 
                str=right(str,len(str)-1) 
            next  
        end function 
        function checknum() 
            checknum=true 
            if not document.all.txtmailsize.value="" then 
                if not isnumeric(document.all.txtmailsize.value) then 
                    msgbox("请勿使用数字以外的字符!") 
                    document.all.txtmailsize.value="" 
                    document.all.txtmailsize.focus 
                    checknum=false 
                else if document.all.txtmailsize.value>5 or document.all.txtmailsize.value<0 then 
                        msgbox("请填写5-0之间的数字!") 
                        document.all.txtmailsize.value="" 
                        document.all.txtmailsize.focus 
                        checknum=false 
                    end if 
                end if 
            end if 
        end function 

        function checkupdate() 
            checkupdate=true 
            if document.all.txtu_name.value="" or document.all.txtmailsize.value=""  then 
                msgbox("您填写的信息不完全!")         
                checkupdate=false 
            end if 
        end function 
        function compare() 
            compare=true 
            if not document.all.txtrepsw.value =document.all.txtpsw.value then 
                msgbox("两次密码输入不一致!") 
                document.all.txtrepsw.focus 
                compare=false 
            end if 
        end function
软件
前端设计
程序设计
Java相关