我正在尝试在 VS2012 中调试 xslt 文件。当我点击顶部的 XML -> Xslt Debugging 时,它会继续显示我调试的先前版本的输出。从那时起,我对其进行了许多更改,但并没有反映出来。
这是一个屏幕输出:
我的 xslt 文件中的代码(我将输入指向 XML 文件)
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
</head>
<body>
<xsl:apply-templates select ="CommercialClients">
</xsl:apply-templates>
</body>
</html>
</xsl:template>
<xsl:template match="CommercialClients">
I found some data
</xsl:template>
</xsl:stylesheet>