asp.net - Change execution timeout at runtime -
in cases, build reports in asp.net require several minutes build -- longer default execution timeout. possible change timeout @ runtime and/or specific page [and/or specific webservice method]?
we've experimented httpruntimesection.executiontimeout no avail (throws exception @ runtime saying the configuration read only.
).
you can adjust timeouts in webconfig file desired page
<location path="somefile.aspx"> <system.web> <httpruntime executiontimeout="180"/> <system.web/> <location/>
Comments
Post a Comment