Long polling Stop other request for 1 or 2 minutes
During create a chat system , I use a long life request to get message , and use a jquery request to send message like this : * Send: * $("#btn").click(function () { $.ajax({ type: "POST", url: "Chat.aspx/Insert", data: "{ 'Str' :'" + $("#txtStr").val() + "' }", contentType: "application/json; charset=utf-8", dataType: "json", success: function (data) { }, error: function () { } }); }); Receive : function Refresh() { $.ajax({ type: "POST", url: "Chat.aspx/GetRecords", data: "{ 'Id' : " + $("#hdnV1").val() + "}", success: function (data) { $.each($(data.d), function () { //Show it to user }); }