Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どちらが速いですか?(静的 html ページ インクルードの場合)
おそらく、静的な html ページ インクルードの最速のソリューションは、サーバー サイドインクルードです。
foo.asp
<%@LANGUAGE="VBSCRIPT"%> <% Option Explicit %> <!-- #include file="baz.htm" -->
baz.htm
<html> <head /> <body> <h1>Hello World!</h1> </body> </html>