How convert Indian Rupee to all country money?
Hi friends,
I need one solution. I am using Asp.Net for my application.
I need to convert Indian rupee to all country money in Asp.net.
Is it possible?If it is possible wht's the solutions for that? Give idea or give any
useful link for this one.
Hope ur's Reply.
Thanks
Re: How convert Indian Rupee to all country money?
Re: How convert Indian Rupee to all country money?
Hi mendhak,
I tried to put this url using add web reference in my application.
But i got that the address is not found.
So give an idea for any other options available for this problem.
Thanks
Re: How convert Indian Rupee to all country money?
It's working fine.
http://www.webservicex.com/CurrencyConvertor.asmx
If you can't connect to this, then find another web service to connect to. This is the best way to perform currency conversions in your website using rates that are up to date.
If you have a problem adding the web service to your application, be more specific about what you tried and what the exact error message was. Don't use a vague description of the error and assume that we know what you mean
Re: How convert Indian Rupee to all country money?
Hi Mendhak,
I got it. I used another link like that same as ur link.
"http://www.webservicex.net/CurrencyConvertor.asmx?wsdl"
And write this code in my application.
net.webservicex.www.CurrencyConvertor MyExRate = new net.webservicex.www.CurrencyConvertor();
double conversionRate = MyExRate.ConversionRate((net.webservicex.http://www.Currency)Enum.Parse(typeo....www.Currency), "Currency Code From"), (net.webservicex.www.Currency)Enum.Parse(typeof(net.webservicex.www.Currency),"Currency COde To"));
It's working fine.
Thanks a lot.
Re: How convert Indian Rupee to all country money?
That's actually the same web service I gave you :D
Your code looks just about right, but you may want to remove the namespaces and add it to the top of the page in the 'using' namespaces area.
Re: How convert Indian Rupee to all country money?