Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.