What do you get when you do something like this:
function ClientFunction(ds) {
if(!ds) alert("ds is nothing");
alert("Table Count: " + ds.Tables.length);
alert("Row Count: " + ds.Tables[0].Rows.length);
var one = ds.Tables[0].Rows[0][0];
var two = ds.Tables[0].Rows[0][0];
return [one, two]
}
function getClientFucntion() {
alert("Calling Server Function");
var r = namespace.class.ServerFunction().value;
alert(r);
var o = ClientFunction(r);
alert(o);
}
Yes alert debuging.....What do you see when you use fiddler?
I would also unwrap your try-catch blocks on the server side and see if
anything blows up..
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---