
Load JPG image from Server & return it to browser?
I have an ASP where I want to Load the binary value of a JPG file and return
it from my ASP to the calling source, which is <IMG SRC="">
So basically, my ASP is going to load this JPG, which is in the current
location of my ASP and return it with the
Response.ContentType = "image/jpeg"
Response.BinaryWrite valueofmyjpg
But how do I populate valueofmyjpg from my jpg file?