In Nuget, I loaded the Ajax Control Toolset, and in the code I created the TabContainer. The markup shows the created TabContainer, but when you run the created ASP.NET web form, you get the error "A ScriptManager is required ASP.NET AJAX Script Components". How to fix?

<body> <form id="form1" runat="server"> <div> <ajaxToolkit:TabContainer runat="server" Height="150px" Width="205px"> <ajaxToolkit:TabPanel ID="first" runat="server" HeaderText="Signature and Bio" > <ContentTemplate> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </ContentTemplate> </ajaxToolkit:TabPanel> <ajaxToolkit:TabPanel ID="Second" runat="server" HeaderText="Second"> <ContentTemplate> <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> </ContentTemplate> </ajaxToolkit:TabPanel> </ajaxToolkit:TabContainer> </div> </form> 

    1 answer 1

    Add ScriptManager to the control form (on the toolbar it is in the AJAX Extensions group):

     <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> <div> <ajaxToolkit:TabContainer runat="server" Height="150px" Width="205px"> 
    • Thanks for the help!) - lcnw