views:

207

answers:

2

I'm building an Appointments Scheduler manager on asp.net mvc. My requirements are:

  • The administrator will add timeslot appointments to the calendar for each persons in the company who can receive a client

  • The client can search online for available timeslot appointments and can make a reservation

  • Idealy, the UI can show the appointsments by days/weeks or agenda style

Is there any asp.net mvc control that can do this. Or any tutorials that can inspire me of how I can do this?

For now, I've found the jQuery Week Calendar but I'm not sure it will answer all my needs and the author has stopped the development of the project.

Thank you very much for the help!

+2  A: 

How about adapting FullCalendar? Here's a tutorial on using it in ASP.NET MVC.

Andrew Lewis
thank you for the link to how to integrate it with MVC. It seems to be a great plugin and i will give it a try.
Alexandre Jobin
Used this with an ASP.NET MVC 1.0 app about 6 months ago and had no issues.
Nissan Fan
A: 

How about Ext Scheduler? It integrates easily with ASP.NET. Check the examples:

http://ext-scheduler.com/examples.html

mats