我从数据集到电网,把数据从电网出口到外壳。 如果电网中的物品数量超过500 000件,就会显示错误信息。
因此,我想将数据分开,并用外壳的不同工作表格显示数据。 (在网络应用中工作)
利用该法典出口至外壳
gvExcel.DataSource = DTS;
gvExcel.DataBind();
Response.AddHeader("content-disposition", "attachment; filename= filename.xls");
Response.ContentType = "application/excel";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gvExcel.RenderControl(htw);
// Style is added dynamically
Response.Write(style);
Response.Write(sw.ToString());
Response.End();
谁能帮助我?