如何根据 id 的值(XML 元素)创建 if 语句块
string filepath = Server.MapPath("XMLFile2.xml");
XmlDocument xdoc1 = new XmlDocument();
xdoc1.Load(filepath);
XmlNode root = xdoc1.DocumentElement;
XmlNode idNode = root.SelectSingleNode("/students/student/id");
if (idNode.Value == 1.ToString()){my code}
恐怕这段代码会选择文件中的第一个节点,或者这有另一种方式我可以根据节点的 id 值选择节点????