Dear guys,
You guys doing very amazing work.
As i see Nop 1.20 version there is new thing "Keep alive".
Plase explain to me what is that and how it's works.
I drilled down but nothing find except for the that.
[quote]

public class Ping : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            context.Response.Write("Ping");
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
[/quote]
Any help would be appreciated
Thanks