What is the ASP.NET equivalent of HttpContext.Current.Items in classic ASP?
3 answers
You can use Session to store content from page to page in a similar way:
Session ("MyVar") = "my value to save"
But there isn't as much gaps around pages in ASP as there is in .net with custom controls, etc. Could you be better off with some globals?
If you give us a little more context (no pun intended), you can better point you in the right direction.
+1
a source to share