I was using Windows Azure Website to host my website.
Connection: Keep-Alive
in my website, how to enable it for my website?timeout
for the Connection: Keep-Alive
and how to determine the best value for the timeout
My server is Windows and using IIS
You can set most of the configuration options for IIS 8 in Azure Web Sites too. To enable keep-alive, add the following section in the web.config
<configuration>
<system.webServer>
<httpProtocol allowKeepAlive="true" />
</system.webServer>
</configuration>