我正在尝试将我的控制台应用程序输出到网页,控制台应用程序生成一组显示的双/小数和字符串数组。任何人都可以帮我把它输出到html文件中。
这是我到目前为止的代码:
if (!File.Exists("Test.html"))
{
StreamWriter stream = new StreamWriter("Test.html", true, System.Text.Encoding.UTF8);
stream.Write(@"<html>" + stream.NewLine + @"<body>" + stream.NewLine);
stream.Write(@"<table width='100%' cellpadding='10' style='margin-top:10px' cellspacing='3' border='1' rules='all'>
<tr>
<td>
<h3>
<span style='font-family:Verdana'>"+stock1+" My Test Is here</span>
</td>
</tr>
</table>" + stream.NewLine + "</body>" + stream.NewLine + "</html>");
stream.Flush();
stream.Close();
}
System.Diagnostics.Process.Start(@"Test.html");
我不确定这段代码是如何工作的,但在添加&#34; + stock1 +&#34;之前它输出了文本“我的测试就在这里”。提前谢谢。