skip to Main Content

Get data by Id using AJAX | JSON ASP.NET – Jquery ajax

i have this web service methode List<object[]> List1 = new List<object[]>(); [WebMethod(EnableSession = true)] [System.Web.Script.Services.ScriptMethod(UseHttpGet = true, ResponseFormat = System.Web.Script.Services.ResponseFormat.Json)] public List<object[]> GetData(int ID) { var team = db.TEST.WHERE(a => a.id == ID).ToList(); List1.Add(new object[] { team }); return teamList;…

VIEW QUESTION
Back To Top
Search