电脑故障

位置:IT落伍者 >> 电脑故障 >> 浏览文章

获取用户真实IP地址代码


发布日期:2020/3/22
 

获取用户真实IP地址代码
Public Function GetIp(getType)
If getType = then
GetIp = RequestServerVariables("HTTP_X_FORWARDED_FOR")
if GetIp = "" Then getIp = RequestServerVariables("REMOTE_ADDR")
ElseIf getType = Then
GetIp = RequestServerVariables("LOCAL_ADDR")
Else
GetIp = "<span style=""color:#FF"">未知</span>"
End if
If GetIp = "::" Then GetIp = ""
End Function

使用方法
dim i
i=
GetIp()

上一篇:DataGridView - DataGridViewCheckBoxCell的使用介绍

下一篇:解析Server对象