本文介绍了ASP,IIS6& amp; VC6 PSDK的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我一直在玩ASP / ASP.NET& amp; IIS6。

我们使用Msxml2.DOMDocument.4.0对象在ASP中创建XML对象。

Msxml2.DOMDocument.4.0来自Windows平台SDK 2003年2月(与VC6兼容的最后一个
版本)。然后我们使用传入xsl文件路径的
TranslateXSLT(XMLDocument.transformNode)。我们的

页面在IIS5& IIS6现场。然而奇怪的事情

发生在我们的客户IIS6:


- 转换只显示xml节点而不是html代码。


可能与IIS6无关。也许它是来自Platform SDK 2003年2月的Msxml2.DOMDocument.4.0




任何人都有任何想法吗?


解决方案



只是在空中拍摄。你在

XSLT文件中指定了输出类型吗?对于HTML输出,它应该是:


< xsl:output method =" html" />

Alex



对不起,实际上它正在输出html。然而逻辑条件

< xsl:when test ="



I have been having a nightmare with ASP/ASP.NET & IIS6.

We use Msxml2.DOMDocument.4.0 object to create a XML object in ASP. The
Msxml2.DOMDocument.4.0 is from the Windows Platform SDK Feb 2003 (the last
version compatible with VC6). Then we use
TranslateXSLT(XMLDocument.transformNode) passing in a xsl file path. Our
pages work perfectly fine under IIS5 & IIS6 onsite. However strange things
happening at our clients IIS6:

- transformation just displays the xml nodes instead of the html code.

Probably it''s nothing to do with IIS6. Maybe it''s Msxml2.DOMDocument.4.0
from Platform SDK Feb 2003?

Anyone has any ideas?


解决方案


Just shooting in the air. Did you specify output type within
XSLT file? For HTML output it should be this:

<xsl:output method="html"/>
Alex


Sorry, actually it''s outputting html fine. However the logic condition
<xsl:when test="



这篇关于ASP,IIS6&amp; amp; VC6 PSDK的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-09 02:42