XSLT parameters in Export Log File Dialog

Hi all,

My Question: How do I use the XSLT Parameters in my own template xsl?

I tied to create a XSLT Param with the name 'test' and teh value 'test'

an in my xsl template I tried with and but it doesnt work for me. And the documentation of Final Builer doesn't explane how to use it..

Regards

dhammann

Hi dhammann,

 

What is the exact problem you're having? Are you receiving an error message? 

 

To pass through a value to a xslt parameter, specify the name and value within the export log action. In the XSLT you will need specify:

 

 

< xsl:param name="param_Name" />

 

and

 

< xsl:value-of select="$param_Name" /> to use the value.

 

Regards,

Paul

Posted By Paul Samways on 21 Mar 2010 05:46 PM 

< xsl:param name="param_Name" />

Thanks for your answer! I forgot this line.

Regards
dhammann