Use the C # to process the XML document.
This article explains how to deal with XML documents in C #, all of which are basic. First, let's build an XML document first, as follows:
XML Version = "1.0" encoding = "UTF-8"?> Tom Stafford name> cfo title> person> Jane Goodwill Name> CEO Title> Person> Tim Daly name> cto title> cto0 title2> person> john graver name> CSO title> person> people peopleList>
Save it as: people.xml, :)
(1) Find the specified node in the XML document, for example: to find users named 'Tim Daly', the specific procedures are as follows. ---- <% @ page language = "c #"%> <% @ Import namespace = "system.xml"%> <% @ Import namespace = "system.xml.xsl"%> <% @ import namespace = "system.xml.xpath"%>