currently I have a medium sized MVC project with multiple controllers that support paging through a paging helper.
this works like this
routes.MapRoute(
"TabletsPaged",
"Tablet/Page/{page}",
new { controller = "Tablet", action = "Index" }
); //paging in the tablet controller
in my master page i have a nav with a link to all of the index actions of my various controllers. For whatever reason when I change pages on any of my controllers my nav links become /controller/page/x where x is the current page i am viewing, and when in the home controller i the links just appear as /controller. Any ideas why this is going on?