首页 > 编程 > ASP > 正文

ASP常用函数:CLngIP()

2024-05-04 11:02:03
字体:
来源:转载
供稿:网友
作用:把IP地址转为长整型

<%
Function CLngIP(ByVal asNewIP)
    Dim lnResults
    Dim lnIndex
    Dim lnIpAry
    lnIpAry = Split(asNewIP, ".", 4)
    For lnIndex = 0 To 3
        If Not lnIndex = 3 Then
            lnIpAry(lnIndex) = lnIpAry(lnIndex) * (256 ^ (3 - lnIndex))
        End If
        lnResults = lnResults + lnIpAry(lnIndex)
    Next
    CLngIP = lnResults
End Function
%>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表