📄 flashdown.asp
字号:
<%
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -