I hope it is a better way to write the route in MVC 4 and would like some feedback.
Could you let me know if the routing patterns below are the best way to do it in MVC 4?
I have an application that has a requirement to show the url in the following format.
http://domain.com/777-777-7777-777-7777/Page1
http://domain.com/777-777-7777-777-7777/Page2
The 777-777-7777-777-7777 is an account number. PageX is the report page number.
I am trying to avoid trashing other controller routes in my project. Below is what I tried but need feedback if this will trash future controllers.
Report Number plus page route
routes.MapRoute(
"Report", // Route name
"{AccountNumber}/{ReportPage}",
new { controller = "Report", action = "Navigate", AccountNumber = UrlParameter.Optional, ReportPage = UrlParameter.Optional});
Future Controller I don't want to trash.
routes.MapRoute(
"FutureController", // Route name
"FutureController/{action}/{id}",
new { controller = "FutureController",id= UrlParameter.Optional});
Any feedback is appreciated.