Which one is fast ,If DataSet store in Session or HashTable or Data Dictionary
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
HI, Which one is fast ,If DataSet store in Session or HashTable or Data Dictionary Thanks
I wouldn't advise any - sessionstate shouod only be used to store SMALL amounts on information, such as user ID and maybe their name, or flags to indicate user-preferences on your site. If you start storing datasets and the like in there, you will seriously limit the scalability of your application.
-
HI, Which one is fast ,If DataSet store in Session or HashTable or Data Dictionary Thanks