<ISBNdb server_time="2012-09-22T07:22:04Z"> <BookList total_results="1" page_size="10" page_number="1" shown_results="1"> <BookData book_id="thief_of_time" isbn="0061031321" isbn13="9780061031328"> <Title>Thief of time</Title> <TitleLong>Thief of time: a novel of Discworld</TitleLong> <AuthorsText>Terry Pratchett</AuthorsText> <PublisherText publisher_id="harpertorch">New York, N.Y. : HarperTorch, [2002], c2001.</PublisherText> <Subjects> <Subject subject_id="discworld_imaginary_place_fiction">Discworld (Imaginary place) -- Fiction</Subject> <Subject subject_id="fantasy_fiction_aaaa0">Fantasy fiction</Subject> </Subjects> </BookData> </BookList> </ISBNdb>
txtsuject.Replace("-", ""); XmlDocument docsubject = new XmlDocument(); docsubject.LoadXml(txtsuject); XmlNodeList itemssubject = docsubject.SelectNodes("ISBNdb/BookList/BookData/Subjects"); XmlNode Subject = itemssubject.Item(0).SelectSingleNode("Subject");
XmlNodeList itemssubject = docsubject.SelectNodes("ISBNdb/BookList/BookData/Subjects"); for (int i = 0; i < itemssubject.Count; i++) { XmlNode node = itemssubject[i]; }
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)