0
這是我嘗試使用的Web服務。我正在使用Visual Studio 2010. http://www.webservicex.net/country.asmx使用XML從Web服務調用國家/地區的貨幣名稱
這是我的代碼。我已將網絡服務添加到我的網站,並且在我的環境中沒有顯示錯誤。當我運行程序並點擊我的按鈕時,然而,沒有任何反應。
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml;
using System.Xml.XPath;
using System.Net;
using System.Web.Services.Protocols;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
public void btnCountry_Click(object sender, EventArgs e)
{
CountryInfo.country country = new CountryInfo.country();
String countryName = txtCountry.Text;
String currencyName = country.GetCurrencyByCountry(countryName);
XPathNavigator nav;
XmlDocument myDoc = new XmlDocument();
myDoc.LoadXml(currencyName);
nav = myDoc.CreateNavigator();
lblCurrency.Text = nav.SelectSingleNode("//Currency").Value;
String countryCode = nav.SelectSingleNode("//CurrencyCode").Value;
}
}
任何幫助將不勝感激!