views:

344

answers:

2

I am migrated a site from asp to asp.net-mvc.

I was using a third party event calendar asp code. does anyone know of a good asp.net mvc event calendar where i see a month view and it will show events in the date cells.

+1  A: 

Look at my post

http://stackoverflow.com/questions/806212/outlook-style-events-calendar-for-project-based-on-mvc-framework

Roman
In fact, any JQuery based stuff should be easy to use under ASP.NET MVC.There are not (yet) many commecial components btw.
Marc Climent
+1  A: 

I've skipped the serverside rendering and went directly for jmonthcalendar

It's quite easy to hookup the month-browsing to a controller action method.

You will also need to do a bit of tinkering with the jquery-history plugin (or something similar) to enable the browser back-button and links to specific months/dates.

And no, that is not exactly what you asked for, but that's what I ended up doing in your situation, and I'm quite happy with the result.

Christian Dalager
do you have any example code of the issues and workarounds that you ran into. is it posted anywhere
ooo
Unfortunately, I haven't got any public available sample code. But I might be able to provide a snippet later today.
Christian Dalager