I'm using the Ajax Control Toolkit, along with the RangeValidator, they are supposed to warn the user when a selected date from a CalendarExtender sent to datetextbox TextBox is invalid (date range based on code behind), it works, but for some reason the ValidatorCalloutExtender code generates a random empty TextBox, right where its code is. I can't tell why. If I set the Validator's Visible property to false, it doesn't show the randomly generated textbox, but it doesn't display the warning message either, why is this happening?
Also this is my validation code, there's no issues with the rest:
<asp:RangeValidator ID="RangeValidator1" runat="server"
ControlToValidate="datetextbox" ErrorMessage="Invalid Date"
Type="Date"></asp:RangeValidator>
<asp:ValidatorCalloutExtender ID="ValidatorCalloutExtender1" runat="server" Enabled="True" TargetControlID="RangeValidator1" >
</asp:ValidatorCalloutExtender>