I am trying to store information that can be shared from one screen to another. I am considering storing the data like this:
Session["x"] = "x";
I saw another person was considering this for MVC. Please excuse my lack of knowledge here but does this mean the data for "x" will be stored locally or on the server?
I would like to access this data from javascript / jQuery? Is this possible? Are there any disadvantages to storing data like this?
thanks,