以下是引用片段: Class Cls_Xml_Transform Private lInput,XSLTemplate Private p_Output Public Property Get Output() Output = p_Output End Property Private Property Let Output(ByVal strInfo) p_Output = strInfo End Property Public Property Let Input(ByVal vNewValue) If IsObject(vNewValue) Then Set lInput=vNewValue End Property Public Property Let XSLTemplatefile(ByVal vNewValue) Dim StyleSheet Dim vNewValue_ vNewValue_ = vNewValue If Not InStr(vNewValue,":\") > 0 Then vNewValue = Server.MapPath(vNewValue) End If Set XSLTemplate=Server.CreateObject("Msxml2.XSLTemplate") Set StyleSheet=Server.CreateObject("Microsoft.FreeThreadedXMLDOM") StyleSheet.load vNewValue XSLTemplate.StyleSheet=StyleSheet End Property Public Sub Transform() Dim proc Set proc = XSLTemplate.createProcessor() proc.input=linput proc.transform() Output=proc.output Set proc=Nothing End Sub End Class |
使用范例:
以下是引用片段:
Set XMLDOM = Server.CreateObject("Microsoft.FreeThreadedXMLDOM")
XMLDOM.async = false
XMLDOM.load(Server.MapPath("bi2.xml"))
Set o=new Cls_IO_Transform
o.XSLTemplatefile="bi2.xsl"
o.Input=XMLDOM
o.Transform()
response.write o.Output()
这里处理的直接是XmlDom对象了,如果需要,灵活可以修改。
ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日ASP编码教程:何谓ASP缓存/为什么要缓存
[ASP]2015年4月15日ASP编码教程:asp实现的sha1加密解密代码
[ASP]2015年4月15日ASP编码教程:asp执行带参数的sql语句实例
[ASP]2015年4月14日