Hello.
I am trying to get a CalendarExtender to populate a date in my textbox. I downloaded the latest version of the Ajaxtoolkit and copied the .dll and .pdb files into the bin folder of my project as well.
Here is my .aspx and web.config code
ASPX
<asp:TextBox ID="DateTextBox" runat="server" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
<asp:Image ID="Image1" runat="server" Height="21px" ImageUrl="~/Img/planner-xxl.png" Width="24px" />
<ajaxToolkit:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="DateTextBox" PopupButtonID="Image1">
</ajaxToolkit:CalendarExtender>
Web.config
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture= ...
Go to the complete details ...