今天偶然看到这么一帖,觉得有些地方还挺有用的,转一下,不管别人同意不了,估计他也不能知道,哈哈!

xml read write modify (转)using System; 
xml read write modify (转)
using System.Collections; 
xml read write modify (转)
using System.ComponentModel; 
xml read write modify (转)
using System.Data; 
xml read write modify (转)
using System.Drawing; 
xml read write modify (转)
using System.Web; 
xml read write modify (转)
using System.Web.SessionState; 
xml read write modify (转)
using System.Web.UI; 
xml read write modify (转)
using System.Web.UI.WebControls; 
xml read write modify (转)
using System.Web.UI.HtmlControls; 
xml read write modify (转)
using System.Xml; 
xml read write modify (转)
private XmlDocument xmlDoc; 
xml read write modify (转)
xml read write modify (转)
//load xml file 
xml read write modify (转)
private void LoadXml() 

xml read write modify (转)<?xml version="1.0" encoding="gb2312"?> 
xml read write modify (转)
<user> 
xml read write modify (转)  
<person> 
xml read write modify (转)  
</person> 
xml read write modify (转)  
<person name="风拉" sex="男" age="25"> 
xml read write modify (转)    
<pass>123</pass> 
xml read write modify (转)    
<Address>大明</Address> 
xml read write modify (转)  
</person> 
xml read write modify (转)  
<person name="风云" sex="女" age="25"> 
xml read write modify (转)    
<pass>123</pass> 
xml read write modify (转)    
<Address>昆明</Address> 
xml read write modify (转)  
</person> 
xml read write modify (转)
</user> 
xml read write modify (转)

相关文章: