Click here to Skip to main content
15,896,207 members
Articles / Web Development / CSS

Cascade XSL

Rate me:
Please Sign up or sign in to vote.
4.40/5 (9 votes)
29 Dec 20044 min read 61.6K   1.1K   38  
An engine that transforms XML files on a web server.
<%@ Page Language="Csharp" %>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="no"  omit-xml-declaration="yes"/>

<xsl:template match="LevelContext">	
	<xsl:copy-of select="*" />
</xsl:template>

</xsl:stylesheet>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Founder tainicom
Greece Greece
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions