grefly
You can get around the error when recursively calling another callback inside a callback handler by delaying the call using window.setTimeout.
example:
BEFORE
function MyCallbackHandler(arg,context) {
WebForm_DoCallback(......);
}
AFTER
function MyCallbackHandler(arg,context) {
window.setTimeout("WebForm_DoCallback(......);",0);
}
A trail of
2 pages
