i cant see any problem with it and we use it also within masterpages
... but we use also namespaces.
try to checkout if document.getElementById("xxxx").error is
available...
if(r.error != null)
{
var msg = '';
if(r.error.Message != null)
msg += 'Message: ' + r.error.Message +
'<br/>';
if(r.error.Type != null)
msg += 'Type: ' + r.error.Type +
'<br/>';
if(r.error.Stack != null)
msg += 'Stack: ' + r.error.Stack +
'<br/>';
if(r.error.TargetSite != null)
msg += 'TargetSite: ' +
r.error.TargetSite + '<br/>';
if(r.error.Source != null)
msg += 'Source: ' + r.error.Source +
'<br/>';
err(msg,1);
window.setTimeout("resultHelperStatusCallback(4)",10);
hMsg();
return;
}
kind regards,
roni
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---