I am writing a web application that will allow a user to browse to multiple web pages within the website making certain requests. All information that the user inputs will be stored in an object that I created. The problem is that I need this object to be accessed from any part of the website and I don't really know the best way to accomplish this. I know that one solution is to use session variables but I don't know how to use them in asp .net MVC. And where would I declare a session variable? Is there any other way?
|
|
I would think you'll want to think about if things really belong in a session state. This is something I find myself doing every now and then and it's a nice strongly typed approach to the whole thing but you should be careful when putting things in the session context. Not everything should be there just because it belongs to some user. in global.asax hook the OnSessionStart event
From anywhere in code where the HttpContext.Current property != null you can retrive that object. I do this with an extension method.
This way you can in code
|
|||||||||||||||||
|
|
The answer here is correct, I however struggled to implement it in an ASP.NET MVC 3 app. I wanted to access a Session object in a controller and couldn't figure out why I kept on getting a "Instance not set to an instance of an Object error". What I noticed is that in a controller when I tried to access the session by doing the following, I kept on getting that error. This is due to the fact that this.HttpContext is part of the Controller object.
However, what I wanted was the HttpContext that's part of the System.Web namespace because this is the one the Answer above suggests to use in Global.asax.cs. So I had to explicitly do the following:
this helped me, not sure if I did anything that isn't M.O. around here, but I hope it helps someone! |
|||||||||
|
|
Well, IMHO..
With regards to #1, I have a strongly typed Master View which has a property to access whatever the Session object represents....in my instance the stongly typed Master View is generic which gives me some flexibility with regards to strongly typed View Pages
and then...
|
||||
|
|
|
Because I dislike seeing "HTTPContext.Current.Session" about the place, I use a singleton pattern to access session variables, it gives you an easy to access strongly typed bag of data.
then you can access your data from anywhere:
|
|||||||
|
|
If you are using asp.net mvc, here is a simple way to access the session. From a Controller:
From a View:
This is definitely not the best way to access your session variables, but it is a direct route. So use it with caution (preferably during rapid prototyping), and use a Wrapper/Container and OnSessionStart when it becomes appropriate. HTH |
|||||||||||
|
|
Great answers from the guys but I would caution you against always relying on the Session. It is quick and easy to do so, and of course would work but would not be great in all cicrumstances. For example if you run into a scenario where your hosting doesn't allow session use, or if you are on a web farm, or in the example of a shared SharePoint application. If you wanted a different solution you could look at using an IOC Container such as Castle Windsor, creating a provider class as a wrapper and then keeping one instance of your class using the per request or session lifestyle depending on your requirements. The IOC would ensure that the same instance is returned each time. More complicated yes, if you need a simple solution just use the session. Here are some implementation examples below out of interest. Using this method you could create a provider class along the lines of:
And register it something like:
|
|||
|
|
|
There are 3 ways to do it.
I prefer 3rd way.This link is good reference. |
||||
|
|
|
Although I don't know about asp.net mvc, but this is what we should do in a normal .net website. It should work for asp.net mvc also.
You would put this inside a method for easy access. HTH |
|||||
|