I'm trying to write a MapRoute call that will make any route that is prefixed with "json/" prepend "json" to the action's name. For instance, a route something like this:
"json/{controller}/{action}"
with "json/Foo/Bar", it should result in:
controller = "Foo"
action = "jsonBar"
Any ideas?