我使用'HttpContext.Current.Response.Write'将数据表导出到excel。它工作正常,直到2天。但是突然,当我导出时,我只能看到空白的excel文件。
我使用了以下代码。
table.RenderControl(htw);
HttpContext.Current.Response.Write(style);
HttpContext.Current.Response.Output.Write(sw.ToString().Replace("td", "td class='text'"));
HttpContext.Current.Response.End();
我确信最近我没有做过任何改变。