xml问题 急救!谢谢各位
string srch=“books/Info[name='" + listbooks.SelectedItem.ToString() + "']";XmlNode foundnode=doc.SelectSingleNode(srch);
当我选择一个element后,怎么把选择的ele其他ele的属性提取到textbox中;
textbox1.text=??? --------------------编程问答-------------------- textbox1.text=foundnode.Attributes["..."].Value --------------------编程问答-------------------- 看不懂在说什么耶 --------------------编程问答-------------------- textbox1.text=foundnode.Attributes["..."].Value 这个我也试了 得不到值。。 --------------------编程问答-------------------- foundnode.Attributes
跟踪下看有值么? --------------------编程问答-------------------- 访问XmlNode.Attributes 属性返回XmlAttributeCollection
使用freach遍历XmlAttributeCollection 获取想要的属性赋值给TextBox。
补充:.NET技术 , C#