I\'m not sure where I\'m going wrong of what I\'m missing.
I\'m building an ASP.NET 2.0 (on the .Net 3.5 framework) Web application and I am including a webservice.
[WebMethod] public static void GetDocuments() { HttpContext.Current.Response.ContentType = "application/json"; HttpContext.Current.Response.Write(JsonConvert.SerializeObject( ^_^ )); HttpContext.Current.Response.End(); }