Passing small amount of data from one controller to another controller, do I use ViewBag? ViewData? or Session...etc... what is the right approach.

e.g. My First [Controller1]/[Action: Register] generates the userid and then needs to be redirected to another controller

return RedirectToAction("Create", "Controller2");

Then on Create (HttpPost) I am storing the data + plus the userid to the database and then redirecting to the next controller which acts the same way on HttpPost it stores the data + plus the userid to the database.

I am a bit lost what approach should I take, how do I pass the userid in a secure way/right way?, please advice, Thank you

link|improve this question

75% accept rate
feedback

2 Answers

up vote 0 down vote accepted

If its not private, just pass it on the url using the third parameter in your redirect: new {id=whateverValue}

If it is private data, use TempData - it will be removed after the next request reads it (well at the end of the request)

link|improve this answer
Thanks I want the id not to show in the url and TempData will not be available when calling controller #3, it will only be available on controller #2, How would I keep it throughout the process. Thanks, – Ben Dec 2 '11 at 23:35
Is using Session okay? – Ben Dec 3 '11 at 0:15
Session is ok. Just remember to remove it when done. – Adam Tuliper Dec 3 '11 at 1:54
thx, is there any other approach to pass data between controllers? except for TempData (since it is only available ones) and in the url-query?. – Ben Dec 6 '11 at 19:30
Sure the http cache (memory cache) database table etc – Adam Tuliper Dec 7 '11 at 1:51
feedback

I believe you can leverage route values to accomplish this. Here is an example:

return RedirectToAction("Create", "Controller2", new { userId = myVar });

For more information on route values, check out RouteValueDictionary http://msdn.microsoft.com/en-us/library/system.web.routing.routevaluedictionary.aspx

link|improve this answer
Thanks, I don't want the id to show in the url. – Ben Dec 2 '11 at 23:36
feedback

Your Answer

 
or
required, but never shown

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