Ok, here is what I'm doing:
I have a frameset with 3 frames (left,top,main), the main frame uses a masterpage, in the aspx page inside the masterpage I have 3 textboxes, 3 required field validators , 3 validatorcalloutextender and a button, when I hit the aspx button, the 3 validatorcalloutextenders works fine, I pop-up a message box in the code-behind inside the button click event and when the page comes back from the post back I get the following error:
Microsoft JScript runtime error: Sys.ArgumentTypeException: Object of type 'String' cannot be converted to type 'Function'.
Parameter name: method
At the webresource.axd, the debugger breaks into this function:
function Sys$Component$endUpdate() {
this._updating = false;
if (!this._initialized) this.initialize();
this.updated();
}
Obviously its a bug because its in the webresource.axd, I'm I wrong?
Thanks for the help.