I have a database that contains a table for storing URL Images (since storing the images as byte arrays could potentially slow the DB down massively). There are two fields in the image table, one that stores a URL to a low resolution image and one that stores a URL to a high Resolution image. So far this is just a concept and has not been fully implemented.
My question is, if i want to pull back these images via the database URL's to display in a Silverlight View, what is the best method of going about doing this and where on the web should I store the images? - On a personal web server?
Following this I want an awesome user experience for the image display. Potentially a thumbnail which when hovered over grows slightly and when clicks zooms to a bit lightbox display.
Help greatly appreciated.