Sever Application Unavailable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have received an error message "Server Application Unavailable" when I
tried to use the DataGrid's DataBind method on web page.

The database connection had been successfully connected, however, the web
page failed when the line of code below was running.

DataGrid1.DataBind()

Please let me know what is the root cause of this problem.

Thank you.
 
I believe the error message is from ASP.NET, which is being recycled or
rather the worker process is being recycled, because a specific percentage
of total available memory is being used. This setting, the memoryLimit
attribute of the processModel element, is located in machine.config; try
changing it to see if this is indeed the error you're seeing. I believe the
default is 60%.
 
Back
Top