Hi,
I have made a simple WebAppl with an Ultrawebtab and 3 Pages.
The 3 Pages are called with the Eventhandler:
void UltraWebTab1_TabClick(object sender, Infragistics.WebUI.UltraWebTab.WebTabEvent e){
switch (e.Tab.Key){
case "0": e.Tab.ContentPane.TargetUrl = "Page1.aspx"; break;
case "1": e.Tab.ContentPane.TargetUrl = "Page2.aspx"; break;
case "2": e.Tab.ContentPane.TargetUrl = "Page3.aspx"; break;}}
So far it works well.
But when I add a scriptmanager to the 3 pages, I got an error:
in line 997 of MicrosoftAjaxWebForms.debug.js:
if (!this._postBackSettings.async) {
Errormessage: 'this._postBackSettings.async' is null or not an object
Any help?
Enviroment: MSVS2008 C# Framework 3.5 and Infragistics35.WebUI.UltraWebTab.v8.1