asp中用XMLHTTP Post获取IP所在地址

 最近想通过XMLHttp提交IP地址到http://www.ip138.com/ 以获取ip所在地址。但是一开始在使用XMLHTTP的responseText获取返回值时,取得的返回页面中的中文全部变成了乱码,后来改为responseBody后正常显示。

<%
'转换为字符串函数
Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function

'提交IP到http://www.ip138.com/ips8.asp,并得到查询的地址
Function returnIPAddress(ip)
dim xmlHttp
set xmlHttp=server.createobject("MSXML2.XMLHTTP")
str = "ip="&ip&"&action=2"   'str为POST的数据,既要查询的表单的内容提交。
xmlHttp.open "POST","http://www.ip138.com/ips8.asp",false
xmlHttp.setRequestHeader"Content-Length",Len(str)
xmlHttp.setRequestHeader"CONTENT-TYPE","application/x-www-form-urlencoded"
xmlHttp.send(str)
tempstr=BytesToBstr(xmlHttp.responseBody,"GB2312")  '使用responseBody方法获取返回值
tempstr=left(tempstr,instr(1,tempstr,"</li><li>查询结果2:",1)-1)
tempstr=mid(tempstr,instr(1,tempstr,"本站主数据:",1)+6)
returnIPAddress=tempstr
End Function

'取得访问用户的IP
visitorIP = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
If Trim(visitorIP)="" Then visitorIP = request.servervariables("remote_addr")

response.write("您是来自:"& returnIPAddress(visitorIP) &" &nbsp;的用户")
%>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值