which one is faster? (for static html page include)

link|improve this question

38% accept rate
1  
I suspect that use of Server.Execute will make use of the web server's cache better that FSO. – Gabe Feb 23 '11 at 6:58
feedback

1 Answer

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>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.