Asp .net stores the sessions in different ways. By default the session is stored in the asp .net process. You can always configure the application so that the session will be stored in one of the following ways.
1) Session State Service
2) SQL Server
3) InProc
Inproc is mostly used for development purposes. The biggest advantage of using this approach is the applications will run faster when compared to other Session state types. But
the disadvantage is Sessions are not stored when there is any problem that occurs with the application, when there is a small change in the files etc., Also there could be frequent loss of session data experienced..
bb.geetha
Member
14 Points
2 Posts
Re: When is web.config called?
Jun 26, 2008 09:32 AM|LINK
Asp .net stores the sessions in different ways. By default the session is stored in the asp .net process. You can always configure the application so that the session will be stored in one of the following ways.
1) Session State Service
2) SQL Server
3) InProc
Inproc is mostly used for development purposes. The biggest advantage of using this approach is the applications will run faster when compared to other Session state types. But the disadvantage is Sessions are not stored when there is any problem that occurs with the application, when there is a small change in the files etc., Also there could be frequent loss of session data experienced..