I have a specialised case where I wish to serve a straight html file from a Controller Action.
I want to serve it from a different folder other than the Views folder
Check this out :
public ActionResult Index() { return new FilePathResult("~/Html/index.htm", "text/html"); }