I am not certain how a domain can load a test when
there is no default document like default.aspx in root. Is in the “global.asax” ?
where is the default page in mvc3?
I am not certain how a domain can load a test when there is
Share
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.
You’re gonna find that in Views/Home/
The index page
Mvc works through the controller – model – view model
When you create a default project you will find that the global.asax has the following code:
This means that the Default page is the Index action in the Home controller.
You can access other pages by this example:
If you have an AccountController with a Login view, it means you can access the login page by going to /Account/Login.