XML is a standard extension language and a standard for Web programming in the future. asp is a widely used Web Programming Language Is it possible for the two of them to work together? Here we will provide you with a very simple example of the limited length and knowledge of XML and XSL. tofu is not here to show ugly. The following describes the content of several files that need to be used.
Testxsl. XSL:
<? XML version = '1. 0'?>
<XSL: stylesheet xmlns: XSL = "http://www.w3.org/TR/WD-xsl">
<XSL: template match = "/">
<HTML>
<Body>
<XSL: For-each select = "personnel/person">
<XSL: Choose>
<XSL: When match = ". [fg = 'boys']">
<Input type = "text">
<XSL: attribute name = "value">
<XSL: value-of select = "name"/>
</XSL: attribute>
</Input>
<Br/>
</XSL: When>
<XSL: otherwise match = ". [fg = 'girl ']">
<Font color = "red"> <li> <XSL: value-of select = "name"/> </LI> </font>
<Br/>
</XSL: otherwise>
<XSL: otherwise>
<Font color = "blue"> <XSL: value-of select = "name"/> </font>
</XSL: otherwise>
</XSL: Choose>
</XSL: For-each>
</Body>
</Html>
</XSL: Template>
</XSL: stylesheet>
Testxml. xml:
<? XML version = "1.0" encoding = "gb2312"?>
<Personnel>
<Person>
<Name> male </Name>
<FG> boy </FG>
</Person>
<Person>
<Name> female </Name>
<FG> girl </FG>
</Person>
<Person>
<Name> well, this is not easy to say </Name>
<FG> donot know </FG>
</Person>
</Personnel>
Testxml. asp
<%
Set xml = server. Createobject ("Microsoft. xmldom ")
XML. async = false
XML. Load (server. mappath ("testxml. xml "))
Set XSL = server. Createobject ("Microsoft. xmldom ")
XSL. async = false
XSL. Load (server. mappath ("testxsl. XSL "))
Response. Write (XML. transformnode (XSL ))
%>
let's take a look at testxml. ASP file
set xml = server. createobject ("Microsoft. xmldom ")
set XSL = server. createobject ("Microsoft. xmldom ")
is used to create an XML and XSL instance, where XML. load (server. mappath ("testxml. XML ") is used to load
XML files containing data, XSL. load (server. mappath ("testxsl. (XSL) is used to load the XSL
file containing data rules, and the XML. transformnode (XSL) uses the preceding rules in an XML file.