如何检查 xslt 中变量的值

发布于 2024-10-30 18:19:28 字数 334 浏览 4 评论 0原文

如何检查 [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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不及他 2024-11-06 18:19:28

假设:

<xsl:variable name="MY_VARIABLE" select="some text"/>

那么:

<xsl:if test="not($MY_VARIABLE = '')">
    <!-- do something here -->
</xsl:if>

Assuming:

<xsl:variable name="MY_VARIABLE" select="some text"/>

Then:

<xsl:if test="not($MY_VARIABLE = '')">
    <!-- do something here -->
</xsl:if>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文