ASP フォーム検証コードの一部を共有する

怪我咯
リリース: 2017-03-30 13:23:07
オリジナル
1286 人が閲覧しました

コードは次のとおりです

<%
&#39;=================================================
&#39;Lonz 通用函数
&#39;=================================================
&#39;含汉字的字符串长度
function strlen(str) 
      dim p_len 
      p_len=0 
      strlen=0 
      if trim(str)<>"" then 
         p_len=len(trim(str)) 
         for xx=1 to p_len 
             if asc(mid(str,xx,1))<0 then 
                strlen=int(strlen) + 2 
             else 
                strlen=int(strlen) + 1 
             end if 
         next 
      end if 
end function
&#39;最大字符数;超过返回true,否则返回false;maxnum:最大字符数,strmaxnum:字符
function bymaxnum(maxnum,strmaxnum)
 if len(strmaxnum)>maxnum then 
  bymaxnum=true 
 else
  bymaxnum=false
 end if
end function
&#39;最小字符数;超过返回true,否则返回false;maxnum:最大字符数,strmaxnum:字符
function byminnum(minnum,strminnum)
 if len(strminnum)<minnum then 
  byminnum=true 
 else
  byminnum=false
 end if
end function
&#39;检查输入不全为或不为汉字,返回true,否则返回false
function isnotcs(strcs)
dim getcs
 for cp=1 to len(strcs)
  getcs=mid(strcs,cp,1)
  if asc(getcs)>=0 then 
   isnotcs=true
    exit function
  end if 
   isnotcs=false
 next
end function
&#39;是否为非email地址;为非email地址返回true,否则返回false;判断条件:是否含有“@”
function IsnotEmail(email)
dim names, name, i, c
IsnotEmail = false
names = Split(email, "@")
if UBound(names) <> 1 then
   IsnotdEmail = true
   exit function
end if
for each name in names
   if Len(name) <= 0 then
     IsnotEmail = true
     exit function
   end if
   for i = 1 to Len(name)
     c = Lcase(Mid(name, i, 1))
     if InStr("abcdefghijklmnopqrstuvwxyz_-.", c) <= 0 and not IsNumeric(c) then
       IsnotEmail = true
       exit function
     end if
   next
   if Left(name, 1) = "." or Right(name, 1) = "." then
      IsnotEmail = true
      exit function
   end if
next
if InStr(names(1), ".") <= 0 then
   IsnotEmail = true
   exit function
end if
i = Len(names(1)) - InStrRev(names(1), ".")
if i <> 2 and i <> 3 then
   IsnotEmail = true
   exit function
end if
if InStr(email, "..") > 0 then
   IsnotEmail = true
end if
end function
&#39;包含非法字符;只允许英文字母,数字,"-","_","."
function havespchar(strspchar)
   havespchar = false
   dim sp,csp
   for sp = 1 to Len(strspchar)
     csp = Lcase(Mid(strspchar, sp, 1))
     if InStr("abcdefghijklmnopqrstuvwxyz_-.", csp) <= 0 and not IsNumeric(csp) then
       havespchar = true
       exit function
     end if
   next
end function
%>
ログイン後にコピー


以上がASP フォーム検証コードの一部を共有するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!