Web Service and get Individual vaues from webservice
16/06/2009 16:36For Import webservice class
using net.webservicex.www;
ArrayList a = new ArrayList();
CurrencyConvertor cc = new CurrencyConvertor();
//Response.Write(cc.ConversionRate(Currency.USD, Currency.INR));
GlobalWeather g = new GlobalWeather();
Response.Write(g.GetCitiesByCountry("Pakistan"));
foreach (string s in Enum.GetNames(typeof(Currency)))
{
a.Add(s);
}
———
Back