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.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---