Yes, you can run several requests at the same time, but only two
concurrent. The others will be put to a local queue and processed
after the first one returns. But: I do not recommend to run more than
one request at the same time because http recommends only to have two
concurrent... and would be better to combine these requests.

Regards,
Michael



On 4/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Aha,Mr. Schwarz,
> I have another questiong to ask.
> What if I have multiple callbacks?
>
> function test()
> {
> test1();
> test2();
> test3();
> }
>
> function test1()
> {
> class.method1(test1_callback);
> }
> function test1_callback(res)
> {
> alert(res.value);
> }
>
> function test2()
> {
> class.method2(test2_callback);
> }
> function test2_callback(res)
> {
> alert(res.value);
> }
> function test3()
> {
> class.method3(test3_callback);
> }
> function test3_callback(res)
> {
> alert(res.value);
> }
>
> Is this possible?Actually I'm have some questions doing like this.
>
>
> >
>


--
Kind regards,
Michael Schwarz

Microsoft MVP - Most Valuable Professional
Microsoft MCAD - Certified Application Developer

http://www.schwarz-interactive.de/
mailto:[EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---

Reply via email to