I want to increase the request timeout for a specific controller action in my application. I know that I can do this in web.config for the entire application, but I would prefer to change it to just one action.
Web.config example:
<system.web> <httpRuntime executionTimeout="1000" /> </system.web>
How should I do it?
asp.net-mvc asp.net-web-api
Kyle West Feb 23 '09 at 21:48 2009-02-23 21:48
source share