Asp – ny built-in control in ASP.NET other than `dropdownlist` to display time

asp.netvb.net

I want to display time starting from 8AM To 7PM With interval 15 minutes. So:

  • 8.15AM
  • 8.30AM
  • 8.45AM
  • 9AM
  • 9.15AM
  • 9.30AM

In a dropdownlist. Is there any built-in control in ASP.NET other than dropdownlist to display time?

Best Solution

You can find something at eworldui or codeproject Doing a search for "asp.net time picker" will reveal some others, too.

Related Question