How to set execution timeout for 1 second in asp.net web api application.
I set it on web.config file. and also set it on the IIS server. but it doesn't show me the time out error. what is the process to get the timeout error ??
How to set execution timeout for 1 second in asp.net web api application.
I set it on web.config file. and also set it on the IIS server. but it doesn't show me the time out error. what is the process to get the timeout error ??
Change the value for httpRuntime executionTimeout in Web.Config. Default is 110 seconds.
<httpRuntime executionTimeout = "1" />