It is possible to offload XSL processing from the server to the client. Doing so distributes the load, which helps to relieve the server from having to process the formatting of an XML document.
The following example demonstrates how to load an XSL and XML document into the clients' memory and then it uses the XSL to transform the XML.
- First, copy the following code into a file named Sample.htm, and then save the file to a WebServer in a location accessible from the Web:
<HTML>
<HEAD>
<TITLE>Clientside XSL Processing Sample</TITLE>
<SCRIPT LANGUAGE="VBScript">
dim xslDoc, xmlDoc
Use the Version dependent PROGID 'MSXML2.DOMDocument.6.0 if you wish to use the DOMDocument object that ships with MSXML 6.0.
Sub Init()
set xslDoc = CreateObject("Microsoft.XMLDOM")
set xmlDoc = CreateObject("Microsoft.XMLDOM")
xslDoc.Async = False
xmlDoc.Async = False
xslDoc.Load "http://<YourServerName>/Sample.xsl"
xmlDoc.Load "http://<YourServerName>/Sample.xml"
Data.innerHTML = xmlDoc.transformNode(xslDoc)
End Sub
</SCRIPT>
</HEAD>
<BODY ONLOAD="Init">
<CENTER><H1>Clientside XSL Processing Sample</H1></CENTER>
<DIV ID="Data">
</DIV>
</BODY>
</HTML>
- Modify the page so that the address of the Sample.xml and Sample.xsl files is the same as the location of your server.
- Insert the following XML code into a blank XML document and save it to the same location as the Sample.xml file:
<?xml version="1.0"?>
<CUSTOMERS>
<CUSTOMER>
<CustomerID>
ALFKI
</CustomerID>
<CompanyName>
Alfreds Futterkiste
</CompanyName>
<ContactName>
Maria Anderson
</ContactName>
<Country>
Germany
</Country>
</CUSTOMER>
<CUSTOMER>
<CustomerID>
ANATR
</CustomerID>
<CompanyName>
Ana Trujillo Emparedados y helados
</CompanyName>
<ContactName>
Ana Trujillo
</ContactName>
<Country>
Mexico
</Country>
</CUSTOMER>
</CUSTOMERS>
- If using an MSXML version earlier than 3.0, then insert the following XSL code into a blank XSL document and save it to the same location as the Sample.xsl file.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/Books">
<HTML>
<BODY>
<TABLE BORDER="2">
<TR>
<TD>Title</TD>
<TD>Author</TD>
</TR>
<xsl:for-each select="Book">
<TR>
<TD><xsl:value-of select="Title"/></TD>
<TD><xsl:value-of select="Author"/></TD>
</TR>
</xsl:for-each>
</TABLE>
</BODY>
</HTML>
</xsl:template>
</xsl:stylesheet>
- Browse to the Sample.htm page.
This page loads into the browser, and then downloads the data for the XML and XSL pages. It then uses the XSL document to transform the XML document into HTML. It displays this output on the page by using the
innerHTML property of the DIV tag on the HTML page.