BLOB From MS SQL

  • Thread starter Thread starter Daren Hawes
  • Start date Start date
D

Daren Hawes

Hi,

I have a MS SQL DB containing images as BLOBS. I can view them in a
browser, but my problem is I need to FTP these images out of the web site.

Can soemone provide me a coding example that will save a physical image
(C:\image.jpg) from a BLOB.

My current system does not actually save an image as we address the image
src like www.mysite.com/showimage.aspx?ID=1

Thanks Daren
 
If you can output it to browser then i do not see any problem saving it to
the file.
Just use FileStream instead of Response object.

George
 
Back
Top