URL encoding with XSLT 1.0

前端 未结 1 1421
耶瑟儿~
耶瑟儿~ 2021-01-18 10:02

I have a problem writing my XSL. I have a link with the following code:



  

        
相关标签:
1条回答
  • 2021-01-18 10:40

    If you are using XSLT 1.0, then refer this.

    In case of XSLT 2.0, you may use this to solve the issue.

    <xsl:value-of select="concat($myUrl,'&amp;projectNumber=',encode-for-uri($projectNumber))"/>
    
    0 讨论(0)
提交回复
热议问题