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.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic int RequestQueueSize { get; set; }
Public Property RequestQueueSize As Integer
Get
Set
public:
property int RequestQueueSize {
int get ();
void set (int value);
}
member RequestQueueSize : int with 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