我想在c#中連續打開2個excel工作簿(一個之後)。我怎樣才能做到這一點? 我使用方法如下:如何打開2繼續在c#代碼後面繼續優化
Response.ContentType = "application/vnd.ms-excel";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + File1 + ".xls");
Response.TransmitFile(savepath);
HttpContext.Current.ApplicationInstance.CompleteRequest();
Response.ContentType = "application/vnd.ms-excel";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + File2 + ".xls");
Response.TransmitFile(savepath);
HttpContext.Current.ApplicationInstance.CompleteRequest();
但是,只有一個Excel中傳輸時,我怎樣才能獲得第二個也???
由於提前
我沒有看到文件下載支持多個文件,只需點擊一下網頁,除非壓縮。 – hungryMind 2011-02-03 15:02:12