Kanał Fullcalendar / Fetching JSON (edytowany)

Mam problem ze zdarzeniami w moim obiekcie fullCalendar nie pokazującym, gdy używam ajax do pobrania danych z mojego kanału JSON. Uważam, że format JSON jest właściwy, ponieważ dane wyjściowe z JSON.aspx to:

[{"id": 1, "title": "TESTTITLE", "info": "INFOINFOINFO", "start": "2012-08-20T12: 00: 00", "end": "2012-08-20T12 : 00: 00 "," użytkownik ": 1}]

Użyłem Firebug i wygląda na to, że kanał JSON nie jest prawidłowo pobierany?

Kiedy dodaję górny kanał JSON bezpośrednio do zdarzeń, które wyświetla poprawnie.

(Edytuj) Odpowiedź JSON działa, chociaż zdarzenia nadal nie są wyświetlane w pełnym kalendarzu.

JSON.aspx

public partial class JSON : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
    // Get events from db and add to list.
    DataClassesDataContext db = new DataClassesDataContext();
    List<calevent> eventList = db.calevents.ToList();

    // Select events and return datetime as sortable XML Schema style.
    var events = from ev in eventList
                 select new
                 {
                     id = ev.event_id,
                     title = ev.title,
                     info = ev.description,
                     start = ev.event_start.ToString("s"),
                     end = ev.event_end.ToString("s"),
                     user = ev.user_id
                 };

    // Serialize to JSON string.
    JavaScriptSerializer jss = new JavaScriptSerializer();
    String json = jss.Serialize(events);

    Response.Write(json);
    Response.End();
   }
}

I moja witryna.master

<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />    
<link href='fullcalendar/fullcalendar.css' rel='stylesheet' type='text/css' />
<script src='jquery/jquery-1.7.1.min.js' type='text/javascript'></script>
<script src='fullcalendar/fullcalendar.js' type='text/javascript' ></script>
<script type="text/javascript">
     $(document).ready(function () {
         $('#fullcal').fullCalendar({

            eventClick: function() {
                alert('a day has been clicked!');
            },
          events: 'JSON.aspx' 
         })
     });
</script>

Od wielu dni skanuję pokrewne pytania, ale żadna z nich nie wydaje się naprawiać moich ...

questionAnswers(1)

yourAnswerToTheQuestion