I have the following two action methods (simplified for question):

[HttpGet]
public ActionResult Create(string uniqueUri)
{
   // get some stuff based on uniqueuri, set in ViewData.  
   return View();
}

[HttpPost]
public ActionResult Create(Review review)
{
   // validate review
   if (validatedOk)
   {
      return RedirectToAction("Details", new { postId = review.PostId});
   }  
   else
   {
      ModelState.AddModelError("ReviewErrors", "some error occured");
      return RedirectToAction("Create", new { uniqueUri = Request.RequestContext.RouteData.Values["uniqueUri"]});
   }   
}

So, if the validation passes, i redirect to another page (confirmation).

If an error occurs, i need to display the same page with the error.

If i do return View(), the error is displayed, but if i do return RedirectToAction (as above), it loses the Model errors.

I'm not surprised by the issue, just wondering how you guys handle this?

I could of course just return the same View instead of the redirect, but i have logic in the "Create" method which populates the view data, which i'd have to duplicate.

Any suggestions?

link|improve this question

feedback

5 Answers

up vote 5 down vote accepted

You need to have the same instance of Review on your HttpGet action. To do that you should save an object Review review in temp variable on your HttpPost action and then restore it on HttpGet action.

[HttpGet]
public ActionResult Create(string uniqueUri)
{
   //Restore
   Review review = TempData["Review"] as Review;            

   // get some stuff based on uniqueuri, set in ViewData.  
   return View(review);
}
[HttpPost]
public ActionResult Create(Review review)
{
   //Save you object
   TempData["Review"] = review;

   // validate review
   if (validatedOk)
   {
      return RedirectToAction("Details", new { postId = review.PostId});
   }  
   else
   {
      ModelState.AddModelError("ReviewErrors", "some error occured");
      return RedirectToAction("Create", new { uniqueUri = Request.RequestContext.RouteData.Values["uniqueUri"]});
   }   
}

Also i would advice, if you want to make it work also when browser refresh button pressed after HttpGet action executed first time, you may go like that

  Review review = TempData["Review"] as Review;  
  TempData["Review"] = review;

Otherwise on refresh button object review will be empty because there wouldn't be any data in TempData["Review"].

link|improve this answer
Excellent. And a big +1 for mentioning the refresh issue. This is the most complete answer so i'll accept it, thanks a bunch. :) – RPM1984 Jan 10 '11 at 2:31
4  
This doesn't really answer the question in the title. ModelState isn't preserved and that has ramifications such as input HtmlHelpers not preserving user entry. This is almost a workaround. – jfar Jan 10 '11 at 3:18
I ended up doing what @Wim suggested in his answer. – RPM1984 Jan 10 '11 at 22:19
No need to cast. TempData["Review"] = TempData["Review"]; works just as well (redundant as it may look :) – Daniel Liuzzi Jan 19 '11 at 9:25
feedback

I suggest you return the view, and avoid duplication via an attribute on the action. Here is an example of populating to view data. You could do something similar with your create method logic.

public class GetStuffBasedOnUniqueUriAttribute : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        var filter = new GetStuffBasedOnUniqueUriFilter();

        filter.OnActionExecuting(filterContext);
    }
}


public class GetStuffBasedOnUniqueUriFilter : IActionFilter
{
    #region IActionFilter Members

    public void OnActionExecuted(ActionExecutedContext filterContext)
    {

    }

    public void OnActionExecuting(ActionExecutingContext filterContext)
    {
        filterContext.Controller.ViewData["somekey"] = filterContext.RouteData.Values["uniqueUri"];
    }

    #endregion
}

And for those that just had a hard time imagining how this would work:

[HttpGet, GetStuffBasedOnUniqueUri]
public ActionResult Create()
{
    return View();
}

[HttpPost, GetStuffBasedOnUniqueUri]
public ActionResult Create(Review review)
{
    // validate review
    if (validatedOk)
    {
        return RedirectToAction("Details", new { postId = review.PostId });
    }

    ModelState.AddModelError("ReviewErrors", "some error occured");
    return View(review);
}
link|improve this answer
How is this a bad idea? I think the attribute avoids the need to use another action because both actions can use the attribute to load to ViewData. – CRice Jan 10 '11 at 1:07
Please take a look at Post/Redirect/Get pattern: en.wikipedia.org/wiki/Post/Redirect/Get – DreamSonic Jan 10 '11 at 1:13
That is normally used after model validation is satisfied, to prevent further posts to the same form on refresh. But if the form has issues, then it needs to be corrected and reposted anyway. This question deals with handling model errors. – CRice Jan 10 '11 at 1:23
Filters are for reusable code on actions, especially useful for putting things in ViewData. TempData is just a workaround. – CRice Jan 18 '11 at 4:23
I still fail to see why this has been marked down. – CRice Feb 22 '11 at 23:05
feedback

I could use TempData["Errors"]

TempData are passed accross actions preserving data 1 time.

link|improve this answer
feedback

Why not create a private function with the logic in the "Create" method and calling this method from both the Get and the Post method and just do return View().

link|improve this answer
This is actually what i ended up doing - you read my mind. +1 :) – RPM1984 Jan 10 '11 at 22:18
This is what I do too, only instead of having a private function, I simply have my POST method call the GET method on error (i.e. return Create(new { uniqueUri = ... });. Your logic stays DRY (much like calling RedirectToAction), but without the issues carried by redirecting, such as losing your ModelState. – Daniel Liuzzi May 7 at 23:41
feedback

I have a method that adds model state to temp data. I then have a method in my base controller that checks temp data for any errors. If it has them, it adds them back to ModelState.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.