0
[WebMethod]
public string HelloWorld()
{
return "Hello"
}
public class contact
{
public string name { get; set; }
public string email { get; set; }
public string phone { get; set; }
}
public class contactscontroller : apicontroller
{
contact[] contacts = new contact[]
{
new contact {name="Ibrahim",email="[email protected]",phone="123-3333" },
new contact {name="nizam",email="[email protected]",phone="123-4433" },
new contact {name="shahid",email="[email protected]",phone="144-3333" },
new contact {name="shahrukh",email="[email protected]",phone="333-3333" },
new contact {name="sufiyan",email="[email protected]",phone="123-3773" }
};
public IEnumerable<contact> getallcontacts()
{
return contacts;
}
}
これが私の最初のWebサービスでは、(やりますuが、このWebサービスに間違っているものを私に伝えることができ、そしてどのようにJSONにデータを返すために、私のaspxページ
このリンクは参考になります(http://stackoverflow.com/questions/8205081/web-service-should-return-json?rq=1) – Keppy