-1
我只能在頂部寫入不變數據(例如.company名稱)。我想寫在底部。在Excel底部導出不變數據
將數據導出到Excel時,如何在導出的所有數據的底部寫入一組不變數據?
的代碼(從評論):
String strFileName = "ABCReport.xls";
Response.ClearContent();
Response.AddHeader("Content-Disposition", "attachment; filename=\"" + strFileName + "\"");
Response.ContentType = "application/excel";
System.IO.StringWriter sw = new System.IO.StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
htw.WriteLine("<b><u><font size='4'>" + "Company name" + " </font></u></b>");
htw.WriteLine("<br>");
dg.RenderControl(htw); Response.Write(sw.ToString());
Response.End();
後你已經嘗試 – MusicLovingIndianGirl
代碼也做SO或谷歌爲這個簡單的搜索。就在2秒鐘之前,還有另外一個類似的問題。提示:檢查EPPlus庫 –
以下是代碼。 – Shwetha