标题:新人求高手解决下难度
只看楼主
lms9988
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-11-1
 问题点数:0 回复次数:0 
新人求高手解决下难度
我想用asp获取一个静态加密页面里的流媒体地址 怎么获取呢

比如获取http://i.  下面代码获取的是所有内容 如何获取里面的mms播放地址?
<%
dim fso
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
Function GetBody(weburl)
    '创建对象
    Dim ObjXMLHTTP
    Set ObjXMLHTTP=Server.CreateObject("MSXML2.serverXMLHTTP")
    '请求文件,以异步形式
    ObjXMLHTTP.Open "GET",weburl,False
    ObjXMLHTTP.send
    While ObjXMLHTTP.readyState <> 4
        ObjXMLHTTP.waitForResponse 1000
    Wend
    '得到结果
     GetBody=ObjXMLHTTP.responseBody
    '释放对象
     Set ObjXMLHTTP=Nothing
End Function
response.write BytesToBstr(GetBody("http://i.),"gb2312")  
function jt()
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
end function
%>
搜索更多相关主题的帖子: 如何 流媒体 加密 nothing 
2011-11-01 13:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-353971-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.233030 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved