I have the following:
<Toolkit:XMLTransformer RUNAT="SERVER" xslFilePath="xml/test.xsl" xmlFilePath="xml/test.xml"
sessionID="<%# Session.SessionID%>" debug="true">
<Toolkit
arameter Name="xmlFilePath" Value="xml/test.xml"/>
<Toolkit
arameter Name="xslFilePath" Value="xml/test.xsl"/>
<Toolkit
arameter Name="MULTIPASS" Value="<%# 'string here'%>"/>
</Toolkit:XMLTransformer>
I need to be able to use databind with the parameters so I can customize the parameters which are for an XSL transformation, but at the moment the value for MULTIPASS is being passed as null.
All other databinding works, just not in these nested controls. Why is this?
<bb/>
<Toolkit:XMLTransformer RUNAT="SERVER" xslFilePath="xml/test.xsl" xmlFilePath="xml/test.xml"
sessionID="<%# Session.SessionID%>" debug="true">
<Toolkit
<Toolkit
<Toolkit
</Toolkit:XMLTransformer>
I need to be able to use databind with the parameters so I can customize the parameters which are for an XSL transformation, but at the moment the value for MULTIPASS is being passed as null.
All other databinding works, just not in these nested controls. Why is this?
<bb/>