Hi All,
I have a need to send multiple partialRequest to the server one after the
other or all at the same time programatically
example code snippet below:
function multipleRequest(count)
{
......
for(var i=0;i<=count;i++)
{
_submitPartialChange('frmId','',{event:'autosub',source:'link'+index});
}
}
The problem i see is that only the first request gets through.
I believe since the partial requests are synchronous (the other request are
not processed/dropped since the first one is not completed). Is there a way
to send a async request instead ie. when the above loop executes all of the
request gets sent to the server without getting lost .. or is there any way
i could implement this scenario ? Please advice
Appreciate your help in advance
Thanks,
Shankar K