A Enable the Debugging in the Web site option in the ASP.NET configuration settings.
Modify the Request Execution timeout to 10 seconds.
B Register the aspnet_perf.dll performance counter library by using the following command:
regsvr32 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_perf.dll
C Add the following code fragment to the <healthMonitoring> section of the Web.config file of the application:
<profiles>
<add name="Default" minInstances="1" maxLimit="Infinite"
minInterval="00:00:10" custom="" />
</profiles>
D Add the following code fragment to the <system.web> section of the Web.config file of the application:
<healthMonitoring enabled="true" heartbeatInterval="10">
<rules>
<add name="Heartbeats Default" eventName="Heartbeat"
provider="EventLogProvider" profile="Critical"/>
</rules>
</healthMonitoring>