经典ASP - 奇怪的字符而不是PNG

时间:2015-05-18 09:14:51

标签: asp-classic

我使用logging输出一些PNG文件。

代码的最后一位是

    postResponse = httpRequest.ResponseText
    Response.ContentType = "image/png"
    response.BinaryWrite postResponse

这导致

ÿÿPNG

有什么建议吗?我尝试用BinaryWrite替换Write并获取

ï¿¿PNG

1 个答案:

答案 0 :(得分:2)

尝试使用以下内容:

response.BinaryWrite httpRequest.responseBody