web頁面引用相關檔案或者頁面方式彙總

zengxia發表於2024-11-08

在網頁裡包含另一個網頁(或檔案)方法如下:

一、要包含的檔案是css檔案的話,用
<link type=text/css rel=stylesheet href=1.css>

二、要包含的檔案是js檔案的話,用
<script language=javascript src=a.js></script>

三、要包含的檔案是html檔案的話,用
<!--#include file="htmlpage.htm"-->

<iframe src=a.htm width=100 height=100></iframe>
這種方式可以包含任何一種可以單獨執行的檔案,比如說htm、asp、jsp、aspx等等

四、要包含的檔案是使用者控制元件的話,先新建一個使用者控制元件(.ascx),然後在頁面裡用
<%@ Register TagPrefix="uc" TagName="top" Src="top.ascx" %>
新增引用然後在要包含的位置加上
<uc:top id="top" runat="server"></uc:top>

====================================

另外一種

在ASP.NET包含檔案的方法有:

1.<% Response.WriteFile("skin/default/footer.txt")%>

2.<% server.execute ("skin/default/footer.txt")%>

3.StreamReader 物件將包含檔案寫到 HTTP 內容流中

相關文章