1. Is it possible to access a variable defined in a URL string of a web application accessed by XSLT? From what I have seen so far I would say know, but then my three days of experience isn't up to much!!
2. If the above isn't possible. I have defined a variable at the top of my XSLT file, and I want to be able to use this variable lower down in the document to output only the attributes that match the variable.
This is the definition:
the lower down the doc I have:
And this doesn't work. It just returns the formatting elements but with nothing in the cells. The full XSLT I have is in this thread:
Any help appreciated
Tony
2. If the above isn't possible. I have defined a variable at the top of my XSLT file, and I want to be able to use this variable lower down in the document to output only the attributes that match the variable.
This is the definition:
Code:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform">[/URL]
<xsl:output method="html" encoding="Windows-1252" />
<xsl:variable name="NumberOfRows" select="4" />
<xsl:variable name="Language" select="En" />
the lower down the doc I have:
Code:
<xsl:value-of select="URLText[@Language='$Language']"/>
And this doesn't work. It just returns the formatting elements but with nothing in the cells. The full XSLT I have is in this thread:
Any help appreciated
Tony