Click here to Skip to main content
15,902,299 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
in my xslt file I have

XML
<xsl:param name="htmlPath"  />


and

XML
<xsl:variable name="filename" />


suppose value of htmlPath is "C:\Users\\Desktop\".
How can I assign variable filename as htmlPath+"abc.html"
Posted
Updated 9-Apr-13 20:05pm
v3
Comments
gavkk 10-Apr-13 4:45am    
<xsl:variable name="filename" select="concat($htmlPath,'.html')">

1 solution

XML
<xsl:variable name="filename" select="concat($htmlPath,@abc,'.html')" />
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900