Env : Visual Studio 2010 SP1 / .NET 4 / AjaxControlToolkit.dll 4.1.51116.0 / Web Form.
Set up like below
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>
It works fine. No problem to use Ajax toolkit, but sometimes, I got these script errors.
These error not from my scripts obviously....
SyntaxError: missing ( before formal parameters
get_xml: function XMLHttpExecutor$get_xml
ReferenceError: Type is not defined
Type._registerScript("MicrosoftAjaxWebForms.js", [
SyntaxError: missing name after . operator
ion.createDelegate(a,a._onScrollerTick);a._scroller=new Sys.
TypeError: Sys.WebForms.PageRequestManager is undefined
...lkitScriptManager1', 'ctl01', ...........
TypeError: Sys.Application is undefined
...ToolkitScriptManager1_HiddenField").value = '';Sys.Application.remove_init(fn);}...
TypeError: Sys.Application is undefined
Sys.Application.add_init(function() {
TypeError: Sys.Extended is undefined...
Any idea?
Is there anything I need to add some configuration in web.config in order to use ajax toolkit control without these errors?
Thanks,