views:

4899

answers:

1

I am currently learning ASP.NET MVC and I have followed Stephen Walther's tutorial: ASP.NET MVC Tip #36 – Create a Popup Calendar Helper.

The calendar is working, but I would like to change the date format to dd/mm/yyyy.

Also are you able to add arrows at the top, so that the calendar can be changed by year as well as month?

+8  A: 

I know this is probably for learning purposes, but a good solution already exists: JQuery UI Datepicker

Alex Fort
Thank you. I used the JQuery UI DatePicker and now have the calendar working.
Roslyn
Is there a demo of how the DatePicker works with data from a database? For example you have a table with events in it and want to render this in the DatePicker to link to a page with the event details?
Jon