开发者

Scripting.FileSystemObject vs Server.Execute

开发者 https://www.devze.com 2023-02-12 15:17 出处:网络
which one is faster? (for static html pa开发者_StackOverflow社区ge include)Probably the fastest solution for static html page include would be Server Side Includes:

which one is faster? (for static html pa开发者_StackOverflow社区ge include)


Probably the fastest solution for static html page include would be Server Side Includes:

foo.asp

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

baz.htm

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

精彩评论

暂无评论...
验证码 换一张
取 消