sulakshana
sulakshana

Reputation: 183

how to pass a parameter and use that in my xslt

i have a xml file and a related xslt file. I am using msxsl.exe and i need to pass a parameter as a command line argument and use that in my xslt file. how can i do that???

command:

msxsl.exe country.xml sheet.xslt -o country_sheet.html p1="india"

how to retrieve the value india in my xslt file?

Upvotes: 11

Views: 11833

Answers (1)

Treemonkey
Treemonkey

Reputation: 2163

try this

<xsl:param name="p1" select="p1"/>

this would be outside any templates, acting somewhat like a global variable

yes then to use the contents of this you could use this inside a template

<xsl:value-of select="$p1"/>

Upvotes: 7

Related Questions