Я хочу постоянно открывать 2 книги Excel (одну за другой) в 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, Как я могу получить второй также ???
Заранее спасибо