I am trying to use Url.Action to specify an action, controller, and a model that I use to specify the parameters. This would look something like this: @Url.Action( "action", "controller", model)
I'm now trying to specify an Area as well. It appears that most suggestions are that you do it like this: @Url.Action( "action", "controller", new {Area = "area"})
Does anyone know how you specify a model and an Area?