How can one go about doing that. I am betting it has something to do with the routing engine. Not sure though. I will continue to browse the interwebs…
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 right, you will want to change your default route. It is in the Global.asax.cs file (by default).
The default one looks like this:
This line:
Is the defaults. The default controller name is
Homeand the default action isIndex. Change them to what you desire.You can learn more about routing here.