在C# asp.net网络应用中,我有一些缺省功能,这些应用将把电网格查输出到前哨。 该守则在2007年《Excel》中发挥了巨大作用,但将于2010年开放。 我需要将这一守则升级,以便同时工作,或找到新的解决办法。 任何帮助都是巨大的。
现行法典:
gvReport.Style.Add("font-size", "1em");
Response.Clear();
string attachment = "attachment; filename=FileName.xls";
Response.ClearContent();
Response.AddHeader("content-disposition", attachment);
Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gvReport.GridLines = GridLines.Horizontal;
gvReport.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();