我正在使用以下代码从 html 字符串导出 excel。
Response.Clear();
Response.Buffer = true;
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("Content-Disposition",
"attachment;filename=" + DateTime.Now.ToString("MM- dd-yyyy H:mm:ss") +
"-FormAndImunizationTracker" +
".xls");
Response.Charset = "";
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Write(htmlString);
Response.End();
return null;
这工作正常,但我需要在同一个 excel 中为不同的报告再添加 2 个工作表。我已经为这些报告创建了 html 字符串。我将如何创建工作表并将内容添加到其中。谢谢你的帮助。