惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
D
Docker
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
D
DataBreaches.Net
月光博客
月光博客
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学

博客园 - kejian of 20

ResultSet详解 关于e.printStackTrace() Java设计模式之适配器模式 MSSQL 2005转到MSSQL 2000的步骤 - kejian of 20 jsp的防sql注入通用程序 - kejian of 20 IIS 一机多站 JavaBean 简单介绍 java.lang.NoClassDefFoundError 关于在Eclipse中导入现有项目 jsp-sql server 2005 关于在ASP中使用在线编辑器——eWebEditor mysql简单命令 asp连接sqlserver JSP页面传递(乱码) jsp配置记录(连接MYSQL) java连接MYSQL 从VCD中提取伴奏 不能用 '..' 表示父目录解决方法 耳机参数
服务器端XSLT
kejian of 20 · 2007-06-26 · via 博客园 - kejian of 20

<%

  'Load the XML

  set xml = Server.CreateObject("Microsoft.XMLDOM")

  xml.async = false

  xml.load(Server.MapPath("cd_catalog.xml"))

  'Load the XSL

  set xsl = Server.CreateObject("Microsoft.XMLDOM")

  xsl.async = false

  xsl.load(Server.MapPath("cd_catalog.xsl"))

  'Transform the file

  Response.Write(xml.transformNode(xsl))

  %>