If not code could you please provide some generic explanation?
|
|
|
|
|
|
|
In Session_Start you can setup anything relevant for a session, depends very much on the application. In general you should avoid Session_End if possible, not only will it generally fire very late (after a session timeout) but in a multi-server configurations it will not fire at all. For details, see the SessionState tag in Web.config |
||
|
|
|
It's always good to remind ourselves why we should never use Session_End excert from Understanding session state modes + FAQ
|
||
|
|
|
|
Session_Start Collection all user information and storing in database. Preparing system for user like temporary file, cached file. Session_End Saving user state in database. Cleaning system and etc. |
||
|
|
|
|
The most common example is counting the online users. Incrementing the count on |
||
|
|
