FullCalendar events from asp.net ASHX page not displaying
问题 I have been trying to add some events to the fullCalendar using a call to a ASHX page using the following code. Page script: <script type="text/javascript"> $(document).ready(function() { $('#calendar').fullCalendar({ header: { left: 'prev,next today', center: 'title', right: 'month, agendaWeek,agendaDay' }, events: 'FullCalendarEvents.ashx' }) }); </script> c# code: public class EventsData { public int id { get; set; } public string title { get; set; } public string start { get; set; }