How to pass context around in a ASP.NET MVC web app - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T11:23:58Z http://stackoverflow.com/feeds/question/119324 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119324/how-to-pass-context-around-in-a-asp-net-mvc-web-app 1 How to pass context around in a ASP.NET MVC web app Keith Nicholas 2008-09-23T06:00:34Z 2008-09-24T13:13:47Z <p>Ok, I'm a newbie to ASP.NET web apps... and web apps in general. I'm just doing a bit of a play app for an internal tool at work.</p> <p>given this tutorial... </p> <p><a href="http://www.asp.net/learn/mvc-videos/video-395.aspx" rel="nofollow">http://www.asp.net/learn/mvc-videos/video-395.aspx</a></p> <p>The example basically has a global tasklist. </p> <p>So if I wanted to do the same thing, but now I want to maintain tasks for projects. So I now select a project and I get the task list for that project. How do I keep the context of what project I have selected as I interact with the tasks? Do I encode it into the link somehow? or do you keep it in some kind of session data? or some other way?</p> http://stackoverflow.com/questions/119324/how-to-pass-context-around-in-a-asp-net-mvc-web-app/119412#119412 0 Answer by Keith Nicholas for How to pass context around in a ASP.NET MVC web app Keith Nicholas 2008-09-23T06:36:01Z 2008-09-23T06:36:01Z <p>ok, From what I can tell, the best option seems to be to save it into the Session data</p> http://stackoverflow.com/questions/119324/how-to-pass-context-around-in-a-asp-net-mvc-web-app/119422#119422 0 Answer by stephbu for How to pass context around in a ASP.NET MVC web app stephbu 2008-09-23T06:38:59Z 2008-09-23T06:38:59Z <p>RESTful URLs, hidden fields, and session cookies are your friends.</p> http://stackoverflow.com/questions/119324/how-to-pass-context-around-in-a-asp-net-mvc-web-app/124232#124232 1 Answer by stucampbell for How to pass context around in a ASP.NET MVC web app stucampbell 2008-09-23T22:08:51Z 2008-09-23T22:08:51Z <p>I use: </p> <ul> <li>Session state for state that should last for multiple requests, e.g. when using wizards. I'd be careful not to put too much data here though as it can lead to scalability problems.</li> <li>TempData for scenarios where you only want the state to be available for the next request (e.g. when you are redirecting to another action and you want that action to have access to the state, but you don't want it to hang around after that)</li> <li>Hidden form fields [input type="hidden"] for state that pertains to the form data and that I want the the controller to know about, but I don't want that data displayed. Also can be used to push state to the client so as not to overburden server resources.</li> </ul> http://stackoverflow.com/questions/119324/how-to-pass-context-around-in-a-asp-net-mvc-web-app/127046#127046 5 Answer by troethom for How to pass context around in a ASP.NET MVC web app troethom 2008-09-24T13:13:47Z 2008-09-24T13:13:47Z <p>As it sounds like you are having multiple projects with a number of tasks each, it would be best practise to let the project be set in the URL. This would require a route such as <code>"/projects/{project}/tasks"</code>. It follows the RESTful URL principle (i.e. the URL describes the content).</p> <p>Using session state will not work if a user possibly have different projects open in multiple browser windows. Let's say I am logging into your system and a selecting two projects opening in two tabs. First the session is set to the project of the first opened tab, but as soon the second tab has loaded, the session will be overwritten to this project. If I then do anything in the first tab, it will be recorded for the second project.</p>