I’m rather new to ASP .NET MVC3.
I know that when I create my controllers through Visual Studio, they will respond to some URL. But where is defined which controller responds to which URL ?
Thank you for you help.
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.
Look at your
global.asaxfile – the routing table is normally defined there.This is the mapping between URLs and controllers/actions.
See the official ASP.NET MVC Routing Overview for details.