Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Global.asax我在asp.net中创建了一个线程。线程将值存储在变量名中downloadnos,并使用启动新线程并接收回调方法的库。调用回调方法时,我尝试读取变量,但它是空的。为什么会这样?如何解决这个问题?
Global.asax
downloadnos
将变量设为静态可能会有所帮助。
我假设您希望变量持续运行 Web 服务器的长度?如果是这样,请使用应用程序来存储数据。那是:
应用程序["mydata"] = "mydatatosave"