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.
假设我们从 ASP.NET 中页面的代码隐藏创建一个“DataTable”对象。这个数据表到底保存在内存中的什么位置?客户端还是服务器端?应用程序池?
谢谢!
类的实例存储在服务器端的内存中,具体来说是在托管堆中。
这是一篇很棒的文章,解释了变量和对象的内存存储概念:
服务器端,在服务器的内存中。将大量记录加载到数据表时要小心,这可能会导致 OutOfMemoryExeption。