tbrentlong
Programmer
I have an xslt stylesheet with the following params defined:
<!-- Declare filter parameters. -->
<xsl
aram name="filterInactive">true</xsl
aram>
<xsl
aram name="filterTimeframe">0</xsl
aram>
I attempt to populate them using the code below:
objParams.AddParam("filterTimeframe",
"",
lngPos.ToString())
It errors out with the message ['' is an invalid QName].
If I change the second parameter to "xsl", I no longer get the error, but the parameter is not passed when I call the transform method on the XSLTransform object and pass in the dom doc, the paramlist and a writer.
Anyone triumphed over this?
bl
<!-- Declare filter parameters. -->
<xsl
<xsl
I attempt to populate them using the code below:
objParams.AddParam("filterTimeframe",
"",
lngPos.ToString())
It errors out with the message ['' is an invalid QName].
If I change the second parameter to "xsl", I no longer get the error, but the parameter is not passed when I call the transform method on the XSLTransform object and pass in the dom doc, the paramlist and a writer.
Anyone triumphed over this?
bl