Click or drag to resize
KaxAjaxControlRequestQueueSize Property
By design ASP.NET AJAX Framework cancels the ongoing ajax request if you try to initiate another one prior to receiving the response for the first request. By setting the RequestQueueSize property to a value greater than zero, you are enabling the queuing mechanism of KaxAjax that will allow you to complete the ongoing request and then initiate the pending requests in the control queue.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public int RequestQueueSize { get; set; }

Property Value

Type: Int32
The default value is 0 (queuing disabled).
Remarks
If the queue is full (queue size equals RequestQueueSize), an attempt for new ajax request will be discarded.
See Also