how do i grab the values of a Person[] object?
below is my server side code:
public Person[] GetPersonList()
{
   //impl code....
   return new Person[0];
}
and my client code:
  $("#btn3").click(function (event) {
                $.getJSON(url', { },
                function (data) {
                    alert(data.Name);
                });
            });
i am getting this result in Firebug:
jsonp1290528639946( [{"Active":true,"Description":"Initial Test","Id":"1","Name":"Test2010","EndDate":"\/Date(-62135578800000-0500)\/","StartDate":"\/Date(1280635200000-0400)\/"}] );
 
    