simple example retrieved web serviced asp.net using jquery
simple example retrieved web serviced asp.net using jquery
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Gaurav RajPosted Sep 15, 2017, 9:38 AM
{
public int regID { get; set; }
public string Name { get; set; }
public string gender { get; set; }
public string country{ get; set; }
}
public List
Connection cs = new Connection();
var q = from a in cs.da.RegisterTables
select
new RegClass
{
regID=a.Id,
Name=a.F_Name+" "+a.L_Name,
gender=a.Gender,
country=a.Counttry,
};
return q.ToList();
}
Midhun TpPosted Sep 14, 2017, 4:45 AM
Zakir AhamedPosted Sep 14, 2017, 3:41 AM