Server too busy

0

I constantly have this situation: Server Too Busy when I run my webforms application. What should I do to resolve this situation? I think it's IIS Express, but I've already been told it can be a database.

    
asked by anonymous 13.01.2015 / 13:53

2 answers

1

Hello,

Try following these steps

Open your application, go to

Properties - > Web Tab - > Servers - > And check (Use Local IIS Web Server) and click Create Virtual Directory.

Run your application.

Go back to the Web Tab and click Use Visual Studio Development Server

Source: link

    
13.01.2015 / 14:06
1

This problem can be caused by many reasons and without being able to analyze several points is difficult but I suggest that you put the delayNotificationTimeout attribute inside the httpRuntime tag that is inside the System.web tag of your web.config application, follow the copy of a tag I use:

<system.web>
<httpRuntime targetFramework="4.5" executionTimeout="600" enableVersionHeader="false" delayNotificationTimeout="20" />

Please comment if you have solved the problem because if it does not work try to help otherwise.

    
13.01.2015 / 14:08