有一个XML文件如下:<topic>
<issue>
<name>myding</name>
<email>[email protected]</email>
<topicid>8888<topicid>
<TopicName>思归,孤熊及各位XML高手高分向你们问好!!!</TopicName>
<content>思归,孤熊及各位XML高手高分向你们问好!!!</content>
</issue>
</topic>我想通过程序asp.net(C#)添加几个节点使之成为这样:<topic>
<issue>
<name>myding</name>
<email>[email protected]</email>
<topicid>8888<topicid>
<TopicName>思归,孤熊及各位XML高手高分向你们问好!!!</TopicName>
<content>思归,孤熊及各位XML高手高分向你们问好!!!</content>
</issue>
<Replys>
<name>长空</name>
<email>[email protected]</email>
<image>image/text.gif<image>
<content>思归,孤熊及各位XML高手高分向你们问好</content>
</Replys>
</topic>其实就是如何通过asp.net(C#)向原来的XML文件添加几个节点,我翻了好多书没有发现怎么做,各位大哥最好能给点代码,我对XML不是很了解,谢谢先!!!