Hi..
Ques : Can you give an example of what might be best suited to place in the Application Start and Session Start subroutines ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Feb 13, 2012, 11:09 AM
Application Start - We can place code to initialize variables once during application start. (e.g, database connection string)
Session Start - We can place code to initialize variables specific to the session (e.g, USER ID and other specific info related to this session)
Thanks