With the new "File" ActionResult, I was thinking about creating a controller to display certain images in my ASP.NET MVC app.
Something like:
<img src="/Photo/Show/hello" alt="Hello" title="Hello" />
versus:
<img src="/Photo/Folder/Hello.jpg" alt="Hello" title="Hello" />
I'm curious as to what the performance impact would be. Assuming I did nothing but return the image file from the controller, is there a noticeable performance difference in calling the image from a controller action versus just coding the path into the src attribute?