.net 抓取了一个网站首页的html,存在一个string字符串在aspx页面,怎么把这个字符串输出到一个html文件上

2025-01-05 06:43:25
推荐回答(4个)
回答1:

是保存到程序目录下吗?那就输出数据流,保存为文件即可。代码参考:
System.IO.StreamWriter w = new System.IO.StreamWriter(“保存的文件路径”, true, System.Text.Encoding.GetEncoding("gb2312"));
w.WriteLine("字符串内容");
w.Flush();
w.Close();
w.Dispose();

回答2:

My.Computer.FileSystem.WriteAllText("index.html", 字符串, True)

回答3:

用js来打印,document.write(string字符串);!

回答4:

你可以 用iframe 啊