View Single Post
  #2 (permalink)  
Old 04-06-03, 03:22
kaeldowdy kaeldowdy is offline
Member
 
Join Date: Apr 2003
Location: Evansville, Indiana
Posts: 75
Lightbulb

You are very close. You have to use the .ContentType property in conjunction with the BinaryWrite method when outputting images...
Code:
' set the ContentType property
Response.ContentType = "image/gif"

' send the binary data to the webbrowser
Response.BinaryWrite (rs("NameOfImageField"))
HTH!

Kael
Reply With Quote