Can I create a Controller that simply returns an image asset?
I would like to route this logic through a controller, whenever a URL such as the following is requeste
Why not go simple and use the tilde ~ operator?
~
public FileResult TopBanner() { return File("~/Content/images/topbanner.png", "image/png"); }