xml用法

xml的用法:
AllNav.xml


   
   

------
读取AllNav.xml基础数据文件
string xmlPath=Server.MapPath("/../AllNav.xml");       
DataSet ds=new DataSet();        
ds.ReadXml(xmlPath);
DataTable dt=ds.Table[0];
for(int i=0;i {
   int id=int.parse(dt.Rows[i][0].ToString());
   string icon=dt.Rows[i][1].ToString();
   string name=dt.Rows[i][2].ToString();
   string url=dt.Rows[i][3].ToString();   
}       

你可能感兴趣的:(xml用法)