HttpContext.Current.Response.Write - 突然停止工作

时间:2016-08-12 02:19:22

标签: c# .net excel

我使用'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();

我确信最近我没有做过任何改变。

0 个答案:

没有答案