Hi everyone,
a friend of mine asked me to help him with transforming an xml-file to html using xsl. Now i am facing one problem: The xml file is more or less like this:
Now, everytime i call <xsl:value of select="bla"> it retrieves not only "This is a test" but also everything that's underneath. Is there a way to get only the content of the bla-element?
a friend of mine asked me to help him with transforming an xml-file to html using xsl. Now i am facing one problem: The xml file is more or less like this:
Code:
<Root>
<bla>This is a test
<bla2>asd</bla2>
<bla3>qwe</bla3>
</bla>
</Root>