使用经典 ASP 代码访问 XSL 变量?

发布于 2024-10-20 22:57:48 字数 522 浏览 1 评论 0原文

我很好奇是否有办法从 ASP 代码访问 XSL 变量的数据。首先是一些背景信息...

我有一个 ASPX 页面,它从 XML 文件中提取数据,并为“Response.write(mm_xsl.Transform())”方面使用单独的经典 ASP 页面。

在向查看器指示 HTML 输出的经典 ASP 页面中,我使用 XSL 变量来打印 XML 文件中的某些数据。例如,我使用以下代码来初始化变量:

<xsl:variable name="age" select="person/Age" />

然后使用以下代码来打印/回显变量:

{$age}

假设变量的值为 50。 我是否可以以某种方式将“50”传递到 ASP 变量中? 我意识到我可能需要发挥创意并以某种方式从标记中检索“50”,类似于客户端 DOM 解析。有没有类似这样的服务器端解析方法?

还有其他想法吗?非常感谢任何提示或相关链接。谢谢!

I am curious if there is anyway to access a XSL variable's data from ASP code. First some background information...

I have an ASPX page that is pulling data from an XML file, and using a separate classic ASP page for the "Response.write(mm_xsl.Transform())" aspect.

In the classic ASP page that dictates the HTML output to the viewer, I have XSL variables used to print certain data from the XML file. For example I use this code to initialize the variable:

<xsl:variable name="age" select="person/Age" />

And then this code to print/echo the variable:

{$age}

Let's say the value of the variable was 50. Is there anyway I can somehow pass "50" into an ASP variable? I realize I might need to get creative and somehow retrieve "50" from the markup, similar to client-side DOM parsing. Is there any server-side parsing method similar to this?

Any other ideas? Any tips or relevant links are greatly appreciated. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

笑梦风尘 2024-10-27 22:57:48

难道您不能在经典 Asp 页面上以 VBScript 内联方式执行 xsl:variable 语句中的相同选择吗?

假设您的 XML 文档名为 mm_doc 您可以尝试以下操作:

  dim age
  age = mm_doc.selectSingleNode("person/Age").text

现在您有一个年龄变量,其内容与您的 Xml 文档相同。

Can't you just execute the same select you have in your xsl:variable statement in VBScript inline on the Classic Asp page?

Assuming your XML Document is called mm_doc you could try something like:

  dim age
  age = mm_doc.selectSingleNode("person/Age").text

and now you have an age variable with the same contents from your Xml Document.

谁把谁当真 2024-10-27 22:57:48

您需要查看 MSXML 文档,了解如何以字符串形式获取转换结果(从 VBScript 或 JavaScript)。我相信这是可能的。

那么您的 XSLT 转换将只输出变量的值(而不输出其他内容)。

You need to look into the MSXML documentation how to get the result of the transformation as a string (from either VBScript or JavaScript). I believe this is possible.

Then your XSLT transformation will just output the value of the variable (and nothing else).

醉生梦死 2024-10-27 22:57:48

正如 Dmitre 所说,您需要使用 MSXML,它是 ASP 的 XML 插件。

教程和文档位于:

As Dmitre said, you need to use MSXML, which is the XML plugin to ASP.

Tutorials and documentation are available at:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文