I’m trying to start a new MVC4 C# project using the basic template, when I debug the project I get the “The resource cannot be found” error, how would I fix this so I just shows a blank page I can work on?
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The “Basic” template does not have any controllers or views in it. You have to create at least a HomeController and an associated view for a page to be displayed. If you want an example application to start from that has something to view without adding anything choose the “Internet Application” template. It creates a default HomeController and and Index view as well as account logon pages.