首页 /编程语言和算法/VB6/ASP
 ASP 使用 ServerXMLHTTP 在 ASP 中读取和显示二进制数据,比如图片
2023年5月24日 18:06
<%
Response.ContentType = "image/jpeg"

Set objHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP")
objHTTP.open "GET", "http://manongku.com/img/logo.png",false
objHTTP.send
Response.BinaryWrite objHTTP.ResponseBody
Set objHTTP = Nothing
%>


 
全部回复(0)
首页 | 电脑版 |