威凡网全力打造:网页编程、软件开发编程、平面设计、服务器端开发、操作系统等在线学习平台!学编程,上威凡网!
ASP教程>> ASP基础 应用技巧 数据库相关 ASP类 存储过程 FSO专栏 ASP其他
当前位置:首页 > ASP教程 > 应用技巧
上一节 下一节
 ASP 获取腾讯IP地址的代码
提问:
复制代码 代码如下:

<script type=text/javascript src=http://fw.qq.com/ipaddress></script>
<script type=text/javascript>
var hehe1=ipdata[2]
var hehe2=ipdata[3]
alert(hehe1);
alert(hehe2);
document.write(ipdata.join(' '));
</script>

如何用asp来存储,从上面读取出来的数据呢。
回答:
复制代码 代码如下:

<%
function getresstr(url,code)
err.clear
dim http,returnstr
set http=server.createobject("microsoft.xmlhttp")
http.open "get",url,false
http.send()
if http.readystate =4 then
if http.status=200 then
returnstr=bytestobstr(http.responsebody,code)
getresstr=returnstr
end if
end if
end function

'函数名:bytestobstr
'作用:转换二进制数据为字符
'参数:body-二进制数据,cset-文本编码方式
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

dim vurl,tempstr
vurl="http://fw.qq.com/ipaddress"
tempstr=getresstr(vurl,"gb2312")
response.write "您的ip为(asp获取真实ip):"&split(tempstr,"""")(1)" " &split(tempstr,"""")(5)" "&replace(split(tempstr,"""")(7),"市","")
%>

申明:本教程内容由威凡网编辑整理并提供IT程序员分享学习,如文中有侵权行为,请与站长联系(QQ:254677821)!
上一节 下一节
相关教程  
其他教程  
ASP基础
应用技巧
数据库相关
ASP类
存储过程
FSO专栏
ASP其他

违法和不良信息举报中心】邮箱:254677821@qq.com
Copyright©威凡网 版权所有 苏ICP备2023020142号
站长QQ:254677821