I would like change a value of prompt text before of processing.
I think change the promptConstant_text.xsl
There is an attribule VALUE:
<xsl:attribute name="VALUE">
<xsl:value-of select = "./pa[@ia='1']"/>
</xsl:attribute>
I want change to:
<xsl:attribute name="VALUE">
<xsl:eval language="VBScript">MY_Function(prompt value)</xsl:eval>
</xsl:attribute>
How to obtain the prompt value? And to pass it to My_Function?
I think change the promptConstant_text.xsl
There is an attribule VALUE:
<xsl:attribute name="VALUE">
<xsl:value-of select = "./pa[@ia='1']"/>
</xsl:attribute>
I want change to:
<xsl:attribute name="VALUE">
<xsl:eval language="VBScript">MY_Function(prompt value)</xsl:eval>
</xsl:attribute>
How to obtain the prompt value? And to pass it to My_Function?