Have you checked the value of res.value? My guess is that it is null.
Another thing to do is breakpoint the C# code and see what the contents
of the StringBuilder (sb) class is. My guess is that it is null.
Bt the way, as for performance in accessing the a DIV try to following
var box = document.getElementById('box');
or a function
function getElem(o)
{
return document.getElementById(o);
}
then use can use getElem('box').innerHTML = ...
Joseph Guadagno
http://www.josephguadagno.net
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---