My Error:
Microsoft JScript runtime error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the ToolkitScriptManager in AjaxControlToolkit.dll.
Ive searched through stackoverflow and no solution helps my problem. I am trying to insert a numericupdown extender with a textbox.
I have already changed ScriptManager to ToolkitScriptManager.
<asp:ToolkitScriptManager runat="server" CombineScripts="false">
I have added this at the top of the master and child page.
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit"
TagPrefix="asp" %>
I have removed the msAJaxBundle script reference.
Here's my NumericUpDownExtender
<asp:NumericUpDownExtender ID="NumericUpDownExtender1" runat="server"
TargetControlID="SortOrderTextBox"
Width="120"
RefValues=""
ServiceDownMethod=""
ServiceUpMethod=""
TargetButtonDownID=""
TargetButtonUpID=""
Minimum = "1"
Maximum = "7" />