flashdown.asp
来自「俄罗斯方块源码 俄罗斯方块源码 俄罗斯方块源码」· ASP 代码 · 共 25 行
ASP
25 行
<%
Function GetURL1(url)
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "GET", url, False, "", ""
.Send
GetURL1 = .ResponseBody
End With
Set Retrieval = Nothing
End Function
function savefile(http,localpath)
Set mstream = Server.CreateObject("ADODB.Stream")
mstream.Type = 1
mstream.Open
'获取图片内容
mstream.Write geturl1(http)
'保存文件
mstream.SaveToFile server.mappath(localpath),2
Set mstream=nothing
end function
call savefile("http://flash.tin8.com/flash8.htm","/flash8.htm")
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?