Hi,
If you want to read the image from your file system & write it from asp, you can do this
Code:
Response.ContentType = "image/jpg" ' "image/gif" "img/png"
Dim stream
Set stream = Server.CreateObject("ADODB.Stream")
Call stream.Open()
stream.Type = adTypeBinary
Call stream.LoadFromFile("[path to file here]")
Call Response.BinaryWrite(stream.Read())
Set stream = Nothing
n.b. you will need to reference the ado constants or substitute 1 for adTypeBinary fo this to work.
HTH,
Chris