I have an action taking two GUIDs:
public class MyActionController : Controller
{
//...
public ActionResult MoveToTab(Guid param1, Guid param2)
{
//...
}
}
I would like the following URI to map to the action:
/myaction/movetotab/1/2
...with 1 corresponding to param1 and 2 to param2.
What will the route look like, and is it possible to map the arguments to parameters with a type of Guid?