如何检查 xslt 中变量的值
如何检查 [MY_VARIABLE] 的值。基本上我正在做的就是用我动态生成的 html 表替换代码后面的这个变量。
我后面的代码
oRetHTML.Replace("[MY_VARIABLE]", oDataStringBuilder.ToString())
想检查该值是否为空。
我的 XSLT
<xsl:when test="[MY_VARIABLE] != '' ">
这不起作用,因为它不是正确的语法。
有什么建议吗?
提前致谢。
How do I check the value of a [MY_VARIABLE]. Basically what I am doing is replacing this variable in code behind by a html table which I generate dynamically.
My code behind
oRetHTML.Replace("[MY_VARIABLE]", oDataStringBuilder.ToString())
I want to check if the value is empty or not.
My XSLT
<xsl:when test="[MY_VARIABLE] != '' ">
This does not work because it is not the right syntax.
Any suggestions?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设:
那么:
Assuming:
Then: