I have url structures like this
/home
/about
/contact
/terms
I dont want to create separate controller foreach page. How to get it work using single home controller? If I make all the in single controller then it show url like
/home
/home/about
/home/contact
/home/terms
Your
global.asaxis responsible for configuring the routes, usually viaRegisterRoutes. You can edit this to explicitly add your own patterns or individual mappings. For example: