本文介绍了哪一个会覆盖其他?的httpRuntime executionTimeout或连接超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

由于每个主体哪一个覆盖其他?

As per subject which one overrides other?

executionTimeout在IIS7网站性能的web.config或连接超时属性?

executionTimeout in web.config or Connection Time-out property in iis7 website properties?

推荐答案

如果连接超时,它可以捕获并响应仍然担任。如果executionTimeout被击中,它必须被不同的处理(最有可能在所述的Application_Error方法)。如果没有被处理,既会引起不好的反应。

If the connection times out, it could be caught and a response still served. If the executionTimeout is hit, it has to be handled differently(most likely in the Application_Error method). If neither are handled, both would cause a bad response.

这篇关于哪一个会覆盖其他?的httpRuntime executionTimeout或连接超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 05:26