I have a custom route setup in MVC4 which allows for a pattern like:
culture/controller/action/id
in addition to the default:
controller/action/id
I want to add a menu to my page that displays the available cultures. When a user clicks a culture, an identifier for "culture" should be inserted / updated into the URL?
What is the BEST way to modify the route (url) like this in MVC4?