Universal Currency Converter ?
How can develop live universal currency converter in asp.net with C# ?
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.
Posted Jun 2, 2011, 7:37 AM
double d = converter.ConversionRate(Currency.USD, Currency.INR);
This is the sample.
You should have one text box, where the user can enter the amoun. Add two dropdown, and load all the current enum values into that.
Then the user will select the from currency and to currency code values.
Hope this helps you.
Sandeep ShekhawatPosted Jun 2, 2011, 7:54 AM
Sandeep ShekhawatPosted Jun 2, 2011, 7:27 AM
ConversionRate ( FromCurrency As Currency , ToCurrency As Currency ) As double method how use?
Posted Jun 2, 2011, 7:11 AM
http://www.webservicex.net/CurrencyConvertor.asmx?WSDL
Sandeep ShekhawatPosted Jun 2, 2011, 6:00 AM
Basically i want know above web service (http://www.webservicex.net/ws/wsdetails.aspx?wsid=10) how consume in my web application.
Posted Jun 2, 2011, 5:48 AM
For this you can use the above mentioned web service.
Please visit www.xe.com . One of the most online current converter.
They are also providing API to integrate it into your application.
http://www.xe.com/ucc/customize.php
Sandeep ShekhawatPosted Jun 2, 2011, 5:43 AM
But i can't understand use it in my asp.net web application.
Please explain it.
Posted Jun 2, 2011, 5:31 AM