0 votes
in Dot Net by
What are the disadvantages of using session?

1 Answer

0 votes
by

The disadvantages of using session are:

  1. Performance overhead occurs in case of large number of users, because session data is stored in server memory.
  2. Overhead involved in serializing and De-Serializing session Data. Because In case of StateServer and SQLServer session mode we need to serialize the object before store.
...