vote up 1 vote down star
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult CreateUser([Bind(Exclude = "Id")] User user)
{
        ...
        db.SubmitChanges();
        ViewData["info"] = "The account has been created.";
        return RedirectToAction("Index", "Admin");
}

This doesnt keep the "info" text in the viewdata after the redirectToAction. How would I get around this issue in the most elegant way?

My current idea is to put the stuff from the Index controlleraction in a [NonAction] and call that method from both the Index action and in the CreateUser action, but I have a feeling there must be a better way.

Thanks.

flag

76% accept rate

3 Answers

vote up 4 vote down check

You can use TempData. TempData["info"] = "The account has been created.".

TempData exists exactly for this situation. It uses Session as storage, but it will not be around after the second response.

link|flag
Interesting, never heard of it. :-) – Thomas Stock Aug 4 at 8:58
it's a bummer tho that you have to use "TempData" in the view too, and can't just keep using ViewData there. But it works nicely, so thanks. – Thomas Stock Aug 4 at 9:01
See the copy extension method blog.eworldui.net/post/2008/… – James S Aug 4 at 9:26
vote up 1 vote down

Use ViewData if your data should be accessible in View during "this" request. Use `TempData' if your data is for "next" request (for example POST-REDIRECT-GET design pattern).

link|flag
+1 for PRG pattern – Thomas Stock Aug 4 at 9:28
vote up 0 vote down

If you need this more than once, a nice workaround would be creating ActionFilterAttributes which export/import the tempdata to viewdata and vice-versa. You can pass your ModelState in this way very nicely as well (demonstrated here - #13). With a few adjustments to that piece of code you would have a clean solution, I think.

link|flag

Your Answer

Get an OpenID
or

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