将网上的内容,读取到指定文件中页面静态化
Posted zyc19910109
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将网上的内容,读取到指定文件中页面静态化相关的知识,希望对你有一定的参考价值。
出错:
已经将指定页面的内容读取到了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(); }
文件结构如下所示:
以上是关于将网上的内容,读取到指定文件中页面静态化的主要内容,如果未能解决你的问题,请参考以下文章