Fullcalendar events, with MVC asp

mzikd

New Member
\[code\]$(document).ready(function () {$('#calendar').fullCalendar( { header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay' }, editable: true, events: function (start, end, callback) { var event = []; event.push({ title: 'Garten', start: '2013-06-10T00:00:00', allday: true }); callback(event); } });});\[/code\]Guys thats an event example but what i want is to extract the events from the DataBase, im working with MVC 2 ASP.net and the database is on ADO.Net can anyone help me making an example of how can i extract the data
 
Top