A
ad
I find a line in a Web application like:
myString=(string)HttpContext.Current.Items["aString"];
I used to use
myString=(string)Application["aString"];
or
myString=(string)ViewState["aString"];
I know about the difference about Application state and ViewState.
But what is the HttpContext statae?
myString=(string)HttpContext.Current.Items["aString"];
I used to use
myString=(string)Application["aString"];
or
myString=(string)ViewState["aString"];
I know about the difference about Application state and ViewState.
But what is the HttpContext statae?