IIS7 支持html頁(yè)面包含(include)html頁(yè)面 IIS設(shè)置與代碼編寫
1:處理映射程序
添加模塊映射 請(qǐng)求路徑 *.html 模塊選擇 ServerSideIncludeModule,名稱填寫:SSINC-html
2:重新啟動(dòng)IIS
3:其中一個(gè)頁(yè)面 中寫 <!--#include virtual="/IndexInclude/downcc.html" -->
4:downcc.html 為utf-8編碼,發(fā)現(xiàn)在引入后頁(yè)面有空白頁(yè),請(qǐng)刪除BOM
5:生成downcc.html時(shí) 編碼
Encoding code = new UTF8Encoding(false); // create encoding with no BOM
StreamWriter sw = new StreamWriter(path + htmlfilename, false, code);
這樣就解決IIS7不支持include的問題,以及出現(xiàn)頁(yè)面空白的問題。
圖文教程:
1、找到處理映射
2、雙擊進(jìn)去找到“添加模塊映射”;
3、進(jìn)入到模塊映射中,如圖配置
4、點(diǎn)擊“請(qǐng)求限制”;
關(guān)鍵詞:IIS7,IIS
閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!
- 0
- 0
- 0
- 0
- 0
- 1