hi,
i have created an ASP.net web service that contain a webmothod that return the string. now i want to add an other method into that method. like following
[WebMethod]
public string hello()
{
sum();
return "abc";
}
public int sum()
{
return 10;
// it does not make sense but just for example.
}
now i want to access sum method from my client. how can i do it.
thanks and best regards,
Nice Candy.