I created a thread in Global.asax of asp.net. The thread store a value in variable name downloadnos and use a library that start a new thread and receive a callback method. When the callback method is called, I try to read the variable, but it is empty. Why is it so? How to fix this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Making the variable static might help. |
|||
|
|
I assume you want the variable to last the length of your web server running? if so use Application to store the data. That is: Application["mydata"] = "mydatatosave" |
|||
|
|