Scripting.FileSystemObject vs Server.Execute

时间:2011-02-23 06:51:58

标签: performance asp-classic filesystemobject

哪一个更快? (对于静态html页面包括)

1 个答案:

答案 0 :(得分:0)

静态html页面包含的最快解决方案可能是服务器端包含

<强> foo.asp

<%@LANGUAGE="VBSCRIPT"%>
<% Option Explicit %>
<!-- #include file="baz.htm" -->

<强> baz.htm

<html>
    <head />
    <body>
        <h1>Hello World!</h1>
    </body>
</html>