码迷,mamicode.com
首页 > 其他好文 > 详细

将网上的内容,读取到指定文件中【页面静态化】

时间:2018-06-12 14:48:21      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:cut   htm   src   exec   技术分享   技术   map   html   .exe   

出错:

技术分享图片

已经将指定页面的内容读取到了test.html文件中,但是页面中有很多的乱码。

 

以下是一个简单的,将aspx文件生成静态html文件的代码

protected void Button1_Click(object sender, EventArgs e)
        {
            System.IO.StringWriter sw = new StringWriter();
            Server.Execute("index.aspx", sw);
            string contentStr = sw.ToString();
            string filePath = Server.MapPath("/");
            filePath += "test.html";
            StreamWriter stw = new StreamWriter(filePath, false, System.Text.Encoding.Default);
            stw.Write(contentStr);
            stw.Flush();
            stw.Close();
        }

 文件结构如下所示:

 技术分享图片

 

将网上的内容,读取到指定文件中【页面静态化】

标签:cut   htm   src   exec   技术分享   技术   map   html   .exe   

原文地址:https://www.cnblogs.com/zyc19910109/p/9171898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!