I'm using the ajaxcontroltoolkit and trying to call a couple of functions on a tab changed event.
I want to call more than one js function from my OnClientActiveTabChanged function but keep getting the error
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Timestamp: Tue, 24 Nov 2009 12:31:43 UTC
Message: Expected '}'
Line: 202
Char: 181
Code: 0
URI: http://localhost/.../.../....aspx?ID=1000&propertyFrameWidth=1234&propertyFrameHeight=603&userId=9&employeeId=526&CCId=2&DbConnTag=TSDBConnection
Update, I've just noticed this happens even for basic alert statements..
OnClientActiveTabChanged="alert('testone');alert('testtwo');"
Line giving the problem:
Sys.Application.add_init(
function()
{
$create(AjaxControlToolkit.TabContainer,
{
"activeTabIndex":0,
"clientStateField":$get("ctrlJobPropertiesView_tbcTabContainer_ClientState")
},
{
"activeTabChanged":alert('testone');alert('testtwo');
},
null,
$get("ctrlJobPropertiesView_tbcTabContainer")
);
});