私のXMLは次のようになります。
<product id="1">
<name>A thing</name>
<description>This is what it's like</description>
</product>
私はこのように見えるかもしれない例を探していました:
string productID = 1;
XDocument productsXML = XDocument.Load("Products.xml");
for item in productsXML {
if (item.ID == productID) {
productNameLabel.Text = item.name;
}
}
つまり、単一のxml子要素を.aspxページに出力できるようになります。
A thing
それは理にかなっていますか?私は数時間例を探していて、必要な足場はもっとたくさんあると思い始めていますが、すべての例が非常に異なるため、どれをたどるかわかりません!
では、どのようにして単一のXML子要素の内容を取得し、それを.aspxに出力できますか?これを取る:
<product id="1">
<name>A thing</name>
<description>This is what it's like</description
</product>
そしてこれを出力します:
A thing