How can i access my project sessions in background thread in my c#.net webapplication?
it gives me session value = null.
Any idea?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Threads in the thread pool are managed by the system. These threads are not bound to the current request. Therefore, Session is not available for them.
session lost when multithreading though