一般的Windows环境(Windows 98 SE以上版本)都有一个MSXML环境,以下的asp代码可以运行,但不必定工作,不工作可能是由于样式单是http://www.w3.org/1999/XSL/Transform的,而最初环境只支撑http://www.w3.org/TR/WD-xsl,所以可能什么也不出来。
以下为引用的内容:
<%@ LANGUAGE = JScript %>
<%
// Set the source and style sheet locations here
var sourceFile = Server.MapPath("test.xml");
var styleFile = Server.MapPath("test.xsl");
// Load the XML
var source = Server.CreateObject("Microsoft.XMLDOM");
source.async = false;
source.load(sourceFile);
// Load the XSL
var style = Server.CreateObject("Microsoft.XMLDOM");
style.async = false;
style.load(styleFile);
Response.Write(source.transformNode(style));
%>
一般以MSXML为开发环境的都要建立安装新的解析器,如MSXML 3或者MSXML 4 Technology Preview,在以replace方法装了MSXML 3后,我们可以应用以下的代码
以下为引用的内容:
<%@ LANGUAGE = JScript %>
<%
// Set the source and style sheet locations here
var sourceFile = Server.MapPath("test.xml");
var styleFile = Server.MapPath("test.xsl");
// Load the XML
var source = Server.CreateObject("Msxml2.DOMDocument");
source.async = false;
source.load(sourceFile);
// Load the XSL
var style = Server.CreateObject("Msxml2.DOMDocument");
style.async = false;
style.load(styleFile);
Response.Write(source.transformNode(style));
%>
这样我们获得了MSXML 3的开发环境,但假如我们不想损坏本来的环境,又要测试我们基于MSXML 3的例子呢,固然用replace方法安装供给了向后兼容方法来支撑XSL元素,函数和XSL命名空间。
实在应用版本无关progIDs(version-dependent progIDs)来创立对象实例可以更好的完成工作,我们不需要用replace方法安装,用side-by-side方法即可,我们看下面的代码:
以下为引用的内容:
<%@ LANGUAGE = JScript %>
<%
// Set the source and style sheet locations here
var sourceFile = Server.MapPath("test.xml");
var styleFile = Server.MapPath("test.xsl");
// Load the XML
var source = Server.CreateObject("Msxml2.DOMDocument.3.0");
source.async = false;
source.load(sourceFile);
// Load the XSL
var style = Server.CreateObject("Msxml2.DOMDocument.3.0");
style.async = false;
style.load(styleFile);
Response.Write(source.transformNode(style));
%>
只需要在Msxml2.DOMDocument后面加上版本号3.0,即可应用MSXML 3的东东了,MSXML 4呢,依次类推。
在客户真个环境也是一样的,用js创立DOM对象是一样的。
以下为引用的内容:
最后,XSLT样式单side-by-side方法下在Internet Explorer 5.0及以后版本不支撑。假如你要应用IE 5来打开XSLT样式单,需要用replace方法安装.