I am just trying to shift some comma separated numbers to the frontend:
[AcceptVerbs(HttpVerbs.Get)] public JsonResult GetSquares() { var result = new JsonR
This won't work?
If not maybe you can just pass it back as a string...
[AcceptVerbs(HttpVerbs.Get)] public ActionResult GetSquares() { IList list = new List(); .... return Content(string.Join(",", list)); }