(Assuming you're using ASP.Net...)
I would recommend a TextBox combined with
- ASP.Net AJAX Calendar Extender (on the demo try clicking on the Month of the calendar)
- ASP.Net AJAX Watermark Extender
- ASP.Net RegularExpressionValidator
- ASP.Net RequiredFieldValidator
Thus:
<ajax:TextBoxWatermarkExtender ID="txtBirthDate_TextBoxWatermarkExtender" runat="server"
TargetControlID="txtBirthDate" WatermarkCssClass="watermark" WatermarkText="DD/MM/YYYY" />
<ajax:CalendarExtender ID="txtBirthDate_CalendarExtender" runat="server" TargetControlID="txtBirthDate"
FirstDayOfWeek="Monday" Format="dd/MM/yyyy" />
<asp:RequiredFieldValidator ID="txtBirthDate_RequiredFieldValidator" runat="server"
ErrorMessage="Please select a date" ControlToValidate="txtBirthDate" CssClass="validator"
Display="Dynamic" EnableClientScript="true" ValidationGroup="YourValGroup"></asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="txtBirthDate_RegularExpressionValidator" runat="server"
ErrorMessage="The date must be entered in the format DD/MM/YYYY" ControlToValidate="txtBirthDate"
CssClass="validator" Display="Dynamic" EnableClientScript="true" ValidationGroup="YourValGroup"
ValidationExpression="(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)\d\d"></asp:RegularExpressionValidator>
This might look a bit overloaded in your aspx file, but it makes for a nice simple user experience, that degrades gracefully (still works) if JavaScript is disabled.
You'd probably want to add a RangeValidator to prevent the user from selecting dates in the future as well.