MVC3 Model binding in HTTP GET request?

Viewed 11981

Without customization, can I do something like this in MVC 3?

    [HttpGet]
    public ViewResult MyAction(ViewModel model)
    {
        // Do stuff
        return View("ViewName", model);
    }

The reason I am doing this is to pass data between different pages as part of a work flow. (I.e. when user fnishes what's needed in step 1, pass the form data to step 2...)

7 Answers
Related