Instead of just {controller}/{action}/{id} is it possible to have mulitple parameters like
{controller}/{action}/{id}/{another id}?
I’m new to MVC (coming from just plain Web Pages). If not possible, does MVC provide a helper method like the UrlData availble in Web Pages?
You will just need to map the new route in your global.asax, like this:
Then in your controller’s action you can pick up the parameter like this: