Website App Pool Recycling

Discussion in 'General troubleshooting' started by msoumare, Jun 26, 2011.

  1. I have a website on a 200MB plan. But the app pool recycles for the following reasons

    1) More than 20 minutes of idle time (no http request in 20 minutes)
    2) The application uses more than 100 MB memory
    3) The application uses more than 70% of CPU resources for more than 3.5
    minutes

    I would like to know how to redirect the user to the default.aspx page when they make an HttpRequest when the app pool has already recycled.

    I tried putting code in the Global.asax Application End method (Response.Redirect("default.aspx") but it's not working. Can anyone assist me with this issue?
     
  2. Have you taken a look at our knowledge base article on how to perform a redirect using ASP or ASP.NET?

    That maybe a good place to start if you don't mind putting the redirect in a webpage.
     
    Last edited by a moderator: Oct 14, 2015

Share This Page