views:

1058

answers:

11

I have always been a very big fan of the DHTML calendar http://www.dynarch.com/projects/calendar/

I was planning on using this for an upcoming project in ASP.NET, but I wouldn't mind finding a new calendar control that is specifically made as a ASP.NET user control.

Does anyone know of some good ones out there that I should check out?

Thanks.

+2  A: 

I'm using Calendar from AJAX.NET with some custom tweaks (for example to correctly handle time) and Telerik's RadCalendar control, which is really nice (but not free).

Biri
the ajax.net calendar supports time?
John Sheehan
It does in a way that you can select the date on the screen and after it enter the date manually. However there is a small problem to set the time because by default it handles only date. If you are interested, I can put the code to the net.
Biri
+3  A: 

This one is free and I used it before I had a Telerik or DevExpress subscription.

http://www.basicdatepicker.com/bdplite

Also if you use jQuery there a few very well done date pickers.

Brian Boatright
+8  A: 

JQuery UI has a nice calendar/datepicker worth taking a look at. And most of all its FREE! click here

sykespro
Thanks all for the suggestions. I really like the simpliciy of the JQuery one, so I'll most likely end up using it.
Ryan Smith
The component are nice but I've found on several occasions that I like using jQuery because it's cleaner and you have better control. Especially for something simple like a date picker.
Brian Boatright
404 not found on that link
GoodEnough
http://ui.jquery.com/demos/datepicker
GoodEnough
A: 

Hi,

i have (besides the great JQuery UI) two other options:

  • Ajax Control Toolkit (from codeplex.com): great, free, but no support for IE6 iFrame overlay bug

  • oBout Calendar (http://www.obout.com/calendar/calendar_home.aspx): not free, but handles the IE6 Bug, and also has a nice "Airplane" mode, where two Calenders work together (Start/End Date)

regards Christoph

Christoph
A: 

For really comprehensive set of date related components check out Peters Blums stuff at http://www.peterblum.com/DES/DateAndTime.aspx we have used these for years

A: 

It's not free, but the Telerik DateTimePicker went over well with my team.

Jeremy Bade
renders a 110kb javascript file though
Shawn Simon
A: 

Ive just used an extjs datepicker and it was frikking sweet!!!!

A: 

Ra-Ajax Calendar is LGPL and Free of Charge to use...

Thomas Hansen
A: 

extjs datepicker is really sweet. you can add it to ASP.NET easily. look at this tutorial: http://www.dottostring.com/2009/01/using-extjs-calendar-control-datefield-in-aspnet/

David
A: 

We have used the Yahoo! UI Library Calendar with no complaints.

domus.vita
A: 

I second jquery's calendar

renegadeMind