F
Fernando Chilvarguer
I'm having problems with a simple binary write.
The page is just supposed to write a JPEG back to the browser but the image
does not display (the "X" image shows).
Any help is appreciated. Here's the full code:
<%@LANGUAGE="VBSCRIPT"%>
<%
Response.Expires = 0
Response.Buffer = TRUE
Response.Clear
Response.ContentType = "image/jpeg"
set fso = Server.CreateObject("Scripting.FileSystemObject")
set fl = fso.GetFile("c:\afterWF.jpg")
Response.BinaryWrite fl
%>
The page is just supposed to write a JPEG back to the browser but the image
does not display (the "X" image shows).
Any help is appreciated. Here's the full code:
<%@LANGUAGE="VBSCRIPT"%>
<%
Response.Expires = 0
Response.Buffer = TRUE
Response.Clear
Response.ContentType = "image/jpeg"
set fso = Server.CreateObject("Scripting.FileSystemObject")
set fl = fso.GetFile("c:\afterWF.jpg")
Response.BinaryWrite fl
%>