views:

1816

answers:

4

I am trying to integrate a calendar plugin like google calendar with custom database and code with asp.net MVC in C#.

It needs to handle Day/Week/Month Events in the Calendar as like google calendar.

I found the similar plugin in jquery http://www.webappers.com/2009/08/04/jquery-weekly-calendar-plugin-inspired-by-google-calendar/. But it shows only the Week

Do anyone have a reference to this? Please suggest

+3  A: 

I answered a similar question a while ago, "ASP.net weekly schedule control", and the answer there would still be relevant to yourself.

DayPilot is a pretty good general purpose calendaring/schedule control.

The full version is not free, but there is a "lite" version available which is not only free but open source!

The "lite" version will give you both Day and Week (and "Work" week) views of the calendar and will show a Month Scheduler view.

Whilst the original DayPilot component is not meant for ASP.NET MVC, a guy called Craig Stuntz has adapted the DayPilot Lite component for ASP.NET MVC:

Using DayPilot with ASP.NET MVC

CraigTP
A: 

Use Google's Calendar API

Josh Stodola
Google calendar API is all driven by its own google's. But i need to have my own database for the events and custom look of the Event Calendar. An excellent control, i saw when searching is http://dhtmlx.com/docs/products/dhtmlxScheduler/index.shtmlI need to try for a similar one, with ASP.NET MVC and C# with the help jquery too.
Prasad
+3  A: 

I'd try FullCalendar

link text

JBland
I was trying on that, but there is no time slots in week and day View. Is there any option to do that?
Prasad
hello prasad, i am the author of fullcalendar. the newest version, 1.4, has it. hope it works for you
arshaw
A: 

Btw, here is the tutorial explaining how to use dhtmlxScheduler in ASP.Net MVC: http://www.dhtmlx.com/blog/?p=639

Steve