show/hide this revision's text 3

The solution is to use the TempData property to store the desired Request components.

For instance:

public ActionResult Send()
{
    TempData["form"] = Request.Form;
    return this.RedirectToAction(a => a.Form());
}

Then in your "Form" action you can go:

public ActionResult Form()
{
    /* Declare viewData etc. */

    if (TempData["form"] != null)
    {
        /* Cast TempData["form"] to 
        System.Collections.Specialized.NameValueCollection 
        and use it */
     }
     return View("Form", viewData);
 }
show/hide this revision's text 2

The solution is to use the TempData property to store the desired Request components.

For instance:

public ActionResult Send()
{
   TempData["form"] = Request.Form;
   return this.RedirectToAction(a => a.Form());
}

Then in your "Form" action you can go:

     public ActionResult Form()
     {
        ... /* Declare viewData etc. */

        if (TempData["form"] != null)
        {
           viewData.Form.SetValues((System.Collections.Specialized.NameValueCollection)TempData["form"]);
                viewData.Form.Validate();
            /* Cast TempData["form"] to 
           System.Collections.Specialized.NameValueCollection 
           and use it */
        }
        return View("Form", viewData);
     }
show/hide this revision's text 1

The solution is to use the TempData property to store the desired Request components.

For instance:

public ActionResult Send()
{
   TempData["form"] = Request.Form;
   return this.RedirectToAction(a => a.Form());
}

Then in your "Form" action you can go:

        public ActionResult Form()
        {
            ... /* Declare viewData etc. */
            if (TempData["form"] != null)
            {
                viewData.Form.SetValues((System.Collections.Specialized.NameValueCollection)TempData["form"]);
                viewData.Form.Validate();
            }
            return View("Form", viewData);
        }