I store my image file into the database as binary type ?
if i want to get the image from the database and show it into aspx page.
I have two option
1.To build a handler
2.to use data uri scheme (which i prefer)
what option should i prefer to show the image
Handler is the way to go. Data URI would only be good if the images were very small, because the user will need to wait for a big page to download with images embedded rather than get the page super-quick then download images concurrently on different connections/threads.