I guess it\'s something very straight forward but I can\'t find out how to do it. In my controller I have:
public ViewResult ShowForm() {
public ActionResult ShowForm() { ViewBag.Title = Resources.ApplicationTitle; ViewBag.LabelStatus = Resources.Status; //Logo byte[] imgbytes = File.ReadAllBytes(@"C:\Images\Logo.png"); return File(imgbytes , "image/png"); }