views:

25

answers:

1

Hi,

I would like to create a calendar view of some events gets from a database, Is it possible to make it with a repeater control? Or its the wrong way?

Txs..

+2  A: 

ASP.NET has a calendar built in that you could use. Some details are here: http://www.w3schools.com/aspnet/control_calendar.asp

I've also used the FullCalendar jQuery plugin to achieve a similar thing.

There's no reason you couldn't use a repeater control to make the calendar, but it seems like a lot of work considering there are already controls around that could do this for you

lomaxx
And it's possible to add events in the calendar?
bAN
yeah. There's a whole api for it. You just need to expose a JSON endpoint
lomaxx
ok asp.net's calendar control is fantastic.. Thanks a lot!!
bAN