hello,I'm a beginner in c#,i want to parse the follows xml use XmlTextReader as a example,then put the content of xml to the stringbuilder,as" Novel+hardcover+1+Margatet+....+1+SqlServer".Which kind and warmhearted man can help me,thanks, i serach http://www.codeproject.com/KB/cs/xml_parsing.aspx , http://www.codeproject.com/info/search.aspx?artkw=XmlTextReader&vidlst=64%2c65%2c69%2c81%2c94&sa_ao=False&sa_so=17&sa_as=1%2c3&aidlst=64%2c65%2c69%2c81 , and google reading xml with XmlTextReader ,the result is not i need,if i have some logic to deal with this problem,i cannot ask somebody to parse it.im having trouble reading the correct nodes. how do i get it to move to the appropriate node
<?xml version="1.0"?>
<Bookstore>
<Book Genre="Novel" Style="hardcover">
<author id="1">
<first-name>Margaret</first-name>
<last-name>Atwood</last-name>
</author>
<Title>The Handmaid's Tale</Title>
<Price>$19.25</Price>
</Book>
<GeneralSettings>
<RecentID>0</RecentID>
<LastUpdate>1967-08-15</LastUpdate>
<EnableAutoUpdate>1</EnableAutoUpdate>
<ShareSum>0</ShareSum>
</GeneralSettings>
<CodeCatag ID="1" Description="SqlServer">
</Bookstore>