It means that the server is out of available memory.
You probably have an infinite loop somewhere that’s frantically creating large objects, or you forgot to dispose of disposable objects and memory slowly leaked.
Home / FAQ / ASP.NET / Error Handling / Why do I get the Error Message ‘System.OutOfMemoryException: Exception of type System.OutOfMemoryException was thrown.’
It means that the server is out of available memory.
You probably have an infinite loop somewhere that’s frantically creating large objects, or you forgot to dispose of disposable objects and memory slowly leaked.
Share with