Click here to Skip to main content
15,868,141 members
Home / Discussions / XML / XSL
   

XML / XSL

 
PinnedHOW TO ANSWER A QUESTION PinPopular
Chris Maunder16-Jul-09 3:10
cofounderChris Maunder16-Jul-09 3:10 
PinnedHow to get an answer to your question PinPopular
Chris Maunder16-Jul-09 3:06
cofounderChris Maunder16-Jul-09 3:06 
QuestionHow to create XSD classes for Jackson. Pin
Syed Mubashshir Hasan17-Oct-22 0:05
Syed Mubashshir Hasan17-Oct-22 0:05 
QuestionGrouping XML key value using XSLT - Need help Pin
Manju Kaushik22-Jun-22 0:25
Manju Kaushik22-Jun-22 0:25 
QuestionNeed help with XML/XSL Pin
Duke Jason2-Dec-21 18:42
Duke Jason2-Dec-21 18:42 
AnswerRe: Need help with XML/XSL Pin
thatraja12-Jan-22 5:24
professionalthatraja12-Jan-22 5:24 
Need Nested Loop.
XML
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match = "/">
        <html>
            <head><title>Continents</title></head>
            <body>
                <xsl:for-each select="Continents/Continent">
                Continent:
                        <xsl:value-of select="name" />
                <p>Languages:</p>
                <ul>
                 <xsl:for-each select="Languages/Language">
                   <li><xsl:value-of select="." /></li>
                 </xsl:for-each>
                </ul>         
                </xsl:for-each>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>

Output:
HTML
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      <title>Continents</title>
   </head>
   <body>
      
      Continent:
      
      America
      <p>Languages:</p>
      <ul>
         <li>English</li>
         <li>Spanish</li>
         <li>Portuguese</li>
         <li>French</li>
         <li>Dutch</li>
         <li>Criolo</li>
      </ul>
      
      Continent:
      
      Europe
      <p>Languages:</p>
      <ul>
         <li>Portuguese</li>
         <li>Spanish</li>
         <li>English</li>
         <li>German</li>
      </ul>
   </body>
</html>


QuestionHow to suppress empty tag using xsl Pin
cartriders16-Dec-20 12:47
cartriders16-Dec-20 12:47 
AnswerRe: How to suppress empty tag using xsl Pin
thatraja5-Jan-21 3:32
professionalthatraja5-Jan-21 3:32 
QuestionHow to add Key and MergeField dynamically into WordProcessing OpenXML document C# program Pin
Ganapatisb10-Sep-20 22:24
Ganapatisb10-Sep-20 22:24 
QuestionComparing two elements in XSLT Pin
Member 148262328-May-20 9:34
Member 148262328-May-20 9:34 
AnswerRe: Comparing two elements in XSLT Pin
Richard Deeming10-May-20 21:58
mveRichard Deeming10-May-20 21:58 
QuestionI don't see WebBrowser?? (webbrowser error) (wpf) Pin
Member 1477397215-Mar-20 21:58
Member 1477397215-Mar-20 21:58 
AnswerRe: I don't see WebBrowser?? (webbrowser error) (wpf) Pin
Richard MacCutchan15-Mar-20 22:56
mveRichard MacCutchan15-Mar-20 22:56 
QuestionSchematron errors with XML Spy update Pin
Member 1459998621-Sep-19 16:33
Member 1459998621-Sep-19 16:33 
AnswerRe: Schematron errors with XML Spy update Pin
Richard Deeming22-Oct-19 0:49
mveRichard Deeming22-Oct-19 0:49 
QuestionXML file read images and display them at random Pin
eatupyourgreens12-Sep-19 9:33
eatupyourgreens12-Sep-19 9:33 
AnswerRe: XML file read images and display them at random Pin
Richard MacCutchan12-Sep-19 11:20
mveRichard MacCutchan12-Sep-19 11:20 
GeneralRe: XML file read images and display them at random Pin
eatupyourgreens12-Sep-19 11:27
eatupyourgreens12-Sep-19 11:27 
GeneralRe: XML file read images and display them at random Pin
Richard MacCutchan12-Sep-19 11:33
mveRichard MacCutchan12-Sep-19 11:33 
QuestionQuery XML API and display results Pin
hm928-Aug-19 4:37
hm928-Aug-19 4:37 
AnswerRe: Query XML API and display results Pin
Richard MacCutchan28-Aug-19 5:57
mveRichard MacCutchan28-Aug-19 5:57 
QuestionDate conversion failure in xsl file (Chinese characters showing in date field) Pin
AkashBabu25-Feb-19 2:34
AkashBabu25-Feb-19 2:34 
AnswerRe: Date conversion failure in xsl file (Chinese characters showing in date field) Pin
Richard Deeming25-Feb-19 8:51
mveRichard Deeming25-Feb-19 8:51 
QuestionDeserializing of List Array appends instead of overwrite Pin
Wild Thing13-Jul-18 0:53
Wild Thing13-Jul-18 0:53 
QuestionHow do I change this code to store new values to data list Pin
DropItSweet9-Jun-18 23:26
DropItSweet9-Jun-18 23:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.