如何将字符串转换为货币?
我正在使用 2 个 Web 服务:
http://www.webservicex.com/currencyconvertor.asmx?WSDL
http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso
第二个 Web 服务是我使用 ListOfCurrencyByCode 方法并获取货币的 isoCode 并将其列在 dropdownlist1.DataTextField = "sISOCode";我得到了所有国家的 ISOCODE。
现在我想使用 webmethod ConversionRate 使用第一个链接 Web 服务来转换值。我该如何转换?ConversionRate 方法似乎只需要我输入
ConversionRate(Currency fromcurrency, Currency tocurrency).
我该怎么做?
i am using 2 web services:
http://www.webservicex.com/currencyconvertor.asmx?WSDL
http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso
One the second webservice i used ListOfCurrenciesByCode method and got the isoCode of currency and listed it in a dropdownlist1.DataTextField = "sISOCode"; and i get all the countries' ISOCODE.
Now i want to convert values using first link webservice using webmethod ConversionRate. How do i convert ?the ConversionRate method only seems to want me to input
ConversionRate(Currency fromcurrency, Currency tocurrency).
How do i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文档:http://msdn.microsoft.com/en-us/library/dwhawy9k .aspx
Documentation: http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx
摘自此处
Taken from here