asp验证Ip格式的函数

验证Ip格式% ''****************************** ''函数:CheckIp(paR_strIp) ''参数:str要检测的字符串 ''作者:阿里西西 ''日期:2007/7/13 ''描述:验证Ip格式,是返回1,否则返回0 ''示例:%=CheckIp('219.45.23.11')% ''****************************** FunctionCheckIp(paR_strIp) CheckIp=0 DimtmpLoop,tmpStr t

作者: 来源: 时间: 17-11-23 15:26:17

验证Ip格式<%
''******************************
''函数:CheckIp(paR_strIp)
''参数:str 要检测的字符串
''作者:阿里西西
''日期:2007/7/13
''描述:验证Ip格式,是返回1,否则返回0
''示例:<%=CheckIp("219.45.23.11")%>
''******************************
Function CheckIp(paR_strIp)
   CheckIp =0
   Dim tmpLoop, tmpStr
   tmpStr =paR_strIp
   If tmpStr ="" Or IsNull(tmpStr) Then Exit Function
   tmpStr =Split(tmpStr, ".")
   If Not isArray(tmpStr) Then Exit Function

   For tmpLoop =0 To ubound(tmpStr)
      If tmpStr(tmpLoop) ="" Or IsNull(tmpStr(tmpLoop)) Then Exit Function
      If Not isNumeric(tmpStr(tmpLoop)) Then Exit Function
      If Cint(tmpStr(tmpLoop)) >255 Or Cint(tmpStr(tmpLoop)) <1 Then Exit Function
   Next
   CheckIp =1
End Function
%>
11
22
33
隐藏区块

会员注册

本功能为预留功能,暂不支持注册 ^_^

Login

社交帐号登陆

使用以下任意帐号可登陆本站

Close section
Close

联系我们

关于5UCMS 您有任何需求 均可以留言给我们