web.config 中的 keep-alive 设置在哪里(或如何)?
我想在每个连接上保持活动状态
,但最多只能保持 5 秒。
如何在 web.config
文件的哪个部分中进行设置?
I want to keep-alive
on each connection, but for only max 5 seconds.
How can I setup this in web.config
file, which section?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 IIS 管理器中,设置连接超时,或者,如果您想自己编辑相应的文件:
IIS6:
C:\Windows\System32\Inetsrv\MetaBase.xml
IIS7:
C:\ Windows\System32\Inetsrv\ApplicationHost.config
:警告:我自己还没有尝试更改此设置。
In IIS Manager, set the Connection Timeout, or, if you want to edit the appropriate file yourself:
IIS6:
C:\Windows\System32\Inetsrv\MetaBase.xml
IIS7:
C:\Windows\System32\Inetsrv\ApplicationHost.config
:Caveat: I haven't tried changing this setting myself.