我正在寻找任何可以为我提供任何国家/地区的 ISD 代码的例程。我在谷歌上搜索了很多,但没有找到类似的东西。我试图这样做:
public string ISDCode(string strCountryCode)
{
string countryCode = "";
XmlDocument xdoc = new XmlDocument();
string url = "http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso/CountryIntPhoneCode?";
url = url + "sCountryISOCode=" + strCountryCode;
xdoc.Load(url);
countryCode = xdoc.DocumentElement.InnerText.ToString();
return countryCode;
}
我使用这个网络服务
但通常无法访问。请指导我如何获得任何国家的 ISD 代码。我只会传递国家代码。例如,我将为加拿大传递“CA”,而例程将为我提供加拿大 ISO 代码。请帮忙。谢谢。