I've renamed some views in my MVC project and then changed the controller to reflect the change but for some reason it still cannot find the view.
My action is as follows:
// GET: Accounts public ActionResult Index() { return View("Find", db.Accounts.ToList()); } And as you can see from this screenshot, the view is there where it should be:
Is there something I've missed?