hello everyone, i'm new here. hope to come back often

i always use a separate file for retrieving an image,
say, you want to display an image that is stored with an ID 1297 in the DB,
<img src="/getimage.aspx?id=1297">
blah blah.
you get the idea.
then in the getimage.aspx you are very flexible as to what you do, get the binary from the db, or get the reference only and read from the disk?
depending on your images, you might store the pics on the disk, since the performance will go down appr. 30-40%, especially with large files. besides, holding the reference is very little overhead (e.g. naming conventions) compared to holding the binary, but has lots of advantages, most of all speed.
just throwing in my 2 cents
