开发者

how to print this in .xsl file?

开发者 https://www.devze.com 2023-02-16 10:32 出处:网络
I have 开发者_如何转开发.xsl file, in this file I want to print "<" how I can print ?

I have 开发者_如何转开发.xsl file, in this file I want to print "<" how I can print ?

Thanks in advance.


(...)
<xsl:text>&lt;</xsl:text>
(...)


For Data you can use disable-output-escaping="yes" to display < or other..

e.x.

   <Data ss:Type="String">
      <xsl:value-of select="cd:Description" disable-output-escaping="yes" />
   </Data>
0

精彩评论

暂无评论...
验证码 换一张
取 消