vote up 1 vote down star

Suggest any Asp.net control for adding date of birth by specifying day,month & year in each dropdown control & its validation

flag

25% accept rate

3 Answers

vote up 0 vote down check

Hi,

Also you have the option to build it for your own. Please take a look at this demo site.

http://jqueryui.com/demos/datepicker/#dropdown-month-year

Not exactly what you want,but you can customize it.

Here's an example how to use it in ASP.net.

http://www.codeproject.com/KB/aspnet/Datepickercontrol.aspx

Hope this help you to kickstart :)

link|flag
vote up 4 vote down

There are far too many date picker controls in the marketplace to count. Most recently, I have been using the CalendarControl within the AjaxControlToolkit from Microsoft and the jQueryUI DatePicker.

If I had to pick one to use over the other, it would be the jQueryUI DatePicker 100% of the time.

<script type="text/javascript">
 $(function() {
  $("#myDate").datepicker();
 });
</script>


<div class="myDate">
link|flag
vote up 0 vote down

There are a wealth of Calendar controls available with various pricing at the ASP.NET Community web site: http://www.asp.net/community/control-gallery/browse.aspx?category=52

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.