我似乎找不到通过c#编写整个HTML文件的方法,我只能找到一行逐行编写,但有没有办法一次性添加它?抱歉我的英文不好:(。
这就是我现在所拥有的:
string path = @"c:\MyTest.html";
// This text is added only once to the file.
if (!File.Exists(path))
{
// Create a file to write to.
using (StreamWriter sw = File.CreateText(path))
{
sw.WriteLine(@"<script type="text/javascript/">");
}
}