Monday, January 26, 2009

session state and global variable across asp pages

[Q] HOw to maintain state across requests/webpages?

ASP.NET use application state and session state

support.microsoft.com/kb/307598

Global.asax file

Generally speaking, using Global.asax for session state isn't a recommended solution???


//=== forums.asp.net/p/1371928/2871909.aspx#2871909
global variables should be used sparingly.
The most common approaches to store global variables are :
Application, Cache, and Session

//=== steveorr.net/faq/GlobalVariables.aspx
Understanding session state modes

No comments: