In IIS how does one change the allowed postback duration so it doesn't timeout while debugging code behind?
In IIS how does one change the allo开发者_开发问答wed postback duration so it doesn't imeout while debugging code behind? Perhaps this is in the web.config?
You could try setting the executionTimeout
attribute In web.config:
<system.web>
<httpRuntime executionTimeout="30000"/>
...
</system.web>
精彩评论