Discussion on:

Message 2 of 2
0 Votes
+ -
RE: Maintaining state in ASP.NET: Know your options
I use Session ! The amount of data you can store on the ViewState is limited ... You can store a 5Mb dataset but in the ViewState ...

The amount of trully global variables for all users is usually less than 10 ( at least in th projects I have been participating in ...) so ... Aplication ["a_global_variable"] is not as usefull as Session ["a_user_specific_variable"]
4th Nov 2008