Code Snippet posted by:
Akiii | Posted on: 7/24/2012 | Category:
Others Codes | Views: 380 | Status:
[Member] |
Points: 40
|
Alert Moderator
Suppose you have an XMl tag like this :-
<name>Dotnetfunda</name>
<xsl:template match="name">
<xsl:apply-template />
</xsl:template>
"name" is the xml tag-name. In the second sample, we are writing the translation rules for each XML tag we want to translate.
Thanks and Regards
Akiii