What is the difference between exclude-result-prefixes and extension-element-prefix in XSLT namespace declaration??
What's the difference between exclude-result-prefixes and extension-element-prefix? Both are used in the header of X...
XSD to HTML Form?
I’ve been tasked with building a web-based interactive SDK to speed up client-side development for our RESPful Web...
XSLT How to check if XML Node exists??
I have XML file: <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href="test.xsl"?&...
XSLT Date function?
I have searched google and Here for an answer. I am trying to use a date formatting function. I am new to XML but I ...
Is there an XSLT name-of element??
In XSLT there is the <xsl:value-of select="expression"/> to get the value of an element, but is there somet...
XSL If Contains?
I’m working on an XSL file that will (among many other things) display a button if the corresponding XML file cont...
index in loop XSL?
I have two nested loop in XSL like this, at this moment I use position() but it's not what I need. <xsl:for-each...
Difference between: child::node() and child::*?
I just wrote an XSLT that did not work at first. I had to rename all children of <Recordset> to <C>: &...
Test for a value inside a string?
Let's say I have the string of "2004,2005,2006,2007,2008,2009" that is assigned to the parameter of "show". Now, th...
How do I make xsl transformation indent the output??
I'm using xalan with the following xsl header: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...
XSL if: test with multiple test conditions?
[Solved] Thanks to @IanRoberts, I had to use the normalize-space function on my nodes to check if they were empty. ...
Can you put two conditions in an xslt test attribute??
Is this right for When 4 < 5 and 1 < 2 ? <xsl:when test="4 &lt; 5 AND 1 &lt; 2" > <!-- do so...
Convert String to Integer in XSLT 1.0?
I want to convert a string value in xslt to an integer value. I am using xslt 1.0, so i can't use those functions su...
How to concat a string to xsl:value-of select="…??
<a> <xsl:attribute name="href"> <xsl:value-of select="/*/properties/property[@name='report'...
XML non breaking space?
I am using XLST files to transform XML to XML. What are valid representation of space? <xsl:text> </xsl:t...