Something about Session or Session Management and Application
| sessions can stored in cookies . cookieless session is also available.for cookie less session it wil create unique session id for each session. it wil be automatically retrieved in URL.state management can be like, user sessions can be stored in 3 ways .
Inproc - stored in asp.net worker process stateserver- stored in window service . sqlserver- user sessions can be stored in sqlserver also.Application Start This Event is fired when t |
|
| he server which holding application starts whereas Session Start event is fired when any User has access that page or Session has been created. Suppose we want to track that how many users have accessed our sites today then Application Start is the best place to do so or we want to give some personalised view to User than Session is the best place. | |
