在XML本網站http://geoiptool.com/data.php報告數據獲取XML單數據
<markers>
<marker lat="xxx" lng="xxx" city="xxx"
country="xxx" host="xxx" ip="xx" code="xx"/>
</markers>
是有可能得到緯度,經度,城市和國家?我嘗試這樣做:
XmlDocument doc = new XmlDocument();
doc.Load("http://geoiptool.com/data.php");
string xmlcontents = doc.InnerXml;
但返回所有XML數據
嘗試doc.Load( 「http://geoiptool.com/data.php」).Descendants( 「標記」) .Attributes( 「LAT」) –
不起作用此代碼=( – Federal09
@TamilSelvan ,'doc.Load'返回void。你需要將你的代碼分解成兩條語句。 – gunr2171