今生只為守護 发表于 2018-12-18 20:59:05

IIS7 支持html页面包含(include)html页面 IIS设置与代码编写

1:处理映射程序
        添加模块映射 请求路径 *.html 模块选择 ServerSideIncludeModule,名称填写:SSINC-html
        2:重新启动IIS
        3:其中一个页面 中写<!--#include virtual="/IndexInclude/downcc.html" -->
        4:downcc.html 为utf-8编码,发现在引入后页面有空白页,请删除BOM
        5:生成downcc.html时 编码
        Encoding code = new UTF8Encoding(false); // create encoding with no BOM
        StreamWriter sw = new StreamWriter(path + htmlfilename, false, code);
        这样就解决IIS7不支持include的问题,以及出现页面空白的问题。
        图文教程:
        1、找到处理映射
        http://www.dnzs678.com/d/file/uploads/allimg/170313/215IL092-0.gif        2、双击进去找到“添加模块映射”;
        http://www.dnzs678.com/d/file/uploads/allimg/170313/215IH315-1.gif        3、进入到模块映射中,如图配置
        http://www.dnzs678.com/d/file/uploads/allimg/170313/215IG348-2.gif        4、点击“请求限制”;
        http://www.dnzs678.com/d/file/uploads/allimg/170313/215IK3G-3.gif

江城小欣 发表于 2018-12-19 04:53:53

常用电脑就应该掌握通俗的电脑硬件软件知识有备无患,楼主的帖子有用啊!:time:

发表于 1970-1-1 08:00:00

页: [1]
查看完整版本: IIS7 支持html页面包含(include)html页面 IIS设置与代码编写