tbrentlong
Programmer
I have an xslt stylesheet with the following params defined:
<!-- Declare filter parameters. -->
<xslaram name="filterInactive">true</xslaram>
<xslaram name="filterTimeframe">0</xslaram>
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. -->
<xslaram name="filterInactive">true</xslaram>
<xslaram name="filterTimeframe">0</xslaram>
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