你用的是服务器控件吗?如果是服务器的控件
先到得到XML文档中的值。这样:
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(aaa.xml);//不知道的XMl的名字是什么
XmlNode root=xmldoc.DocumentElement;//得到根节点
int nodecount=root.ChildNodes.Length;//得到个数
for(int i=0;i<nodecount;i++)
{
string t_Path=xmldoc.getElementsByTagName("Node")[i].nodeValue;
string t_Length=xmldoc.GetElementsByTagName("Length")[i].ChildNodes[0].NodeValue;
//........
}
这样,每个值都获取到了,就没什么难度了吧?
[[it] 本帖最后由 师妃暄 于 2008-7-29 17:54 编辑 [/it]]