I have an MVC3 application that has a view with a table and links to click on to display the image. Client did not want the image to display directly in grid due to size.
I have the images stored in a SQL Server db. Every example I've seen to retrieve the byte[] from the db and display it involves saving to a file first. Is there a way to do this with a Memory Stream to Response.Write it directly and bypass the file i/o?