I have built a ASP.NET MVC site and deployed it successfully on the same machine where I have built it (with Visual studio).
Now I am trying to deploy the site on a different machine, and I just can't get it running. I have copied the whole project on the new machine and set up the project in IIS. Now when I try to access the website I get the message that the view I am trying to access can't be found (I am getting this error for every View). It looks like this:
But all of my views are in the "Views" folder (this particular Login view is under Views/Account/Login.cshtml)
Does anybody know what I am supposed to do so that IIS (8) is able to find/access my views ?
Edit: