I have an controller that takes 3 paramteres
public ActionResult Directives(string MachineName, int ProjectId, int CompanyId)
Right now the Url looks like this.
/Project/Directives?projectId=41&MachineName=Apple%20Macbook%20Luft
But how do i get it to look like this.
/Project/Directives/41/AppleMacbookAir/
Try a custom route:
http://www.asp.net/mvc/tutorials/controllers-and-routing/creating-custom-routes-cs