Session Using


Storing data in Session to avoid calls to the database is a fine practice, especially for data that do not change frequently.
Overusing the Session and putting too much data there will lead to problems (App pool will be forced to recycle and all Sessions will expire) and that would cause more issues

Did you find this article useful?