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