我有一个更改XML属性的XSLT。
<xsl:template namne="apply-document-attributes">
<xsl:attribute name="xmlns">urn:iso:std:iso</xsl:attribute>
<xsl:attribute name="xmlns:xsi" namespace="http://www.w3.org" />
</xsl:template>
我的问题是我只需要两个属性:xmlns和xmlns:xsi。
上面的代码创建了另一个变量xp_0:xsi =“”并且.Net不接受xmlns。
以下是我的首选输出
<Document xmlns="urn:iso:std:iso" xmlns:xsi="http://www.w3.org">
对此有任何建议..