views:

384

answers:

1

I am getting AJAX Control Toolkit is undefined error when I have the CombineScripts="true" on the ToolkitScriptManager:

<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" EnablePageMethods="false" ScriptMode="Release"
            LoadScriptsBeforeUI="false" runat="server" CombineScripts="true">
            <CompositeScript>
                <Scripts>
                    <asp:ScriptReference Path="~/JavaScript/jquery-1.4.1.min.js" />
                    <asp:ScriptReference Path="~/JavaScript/Custom.js" />
                </Scripts>
            </CompositeScript>
        </ajaxToolkit:ToolkitScriptManager>

But when I set the CombineScripts to false everything seems to work. Why is this happening?

+2  A: 

Its a bug in ajax toolkit.

See this link about the bug.

And this site has an explanation of a work around.

Nix