0
我試圖從Gridview導出數據到Excel,並將該Excel文件保存在服務器上的一個文件夾中。我已經完成了Excel生成部分。但我無法將其保存在文件夾中。
請在下面找到我的代碼。
從Gridview導出數據到Excel並保存到一個文件夾
代碼
Response.ClearContent();
Response.Buffer = true;
Response.AddHeader("content-disposition", string.Format("attachment; filename={0}", "order.xls"));
Response.ContentType = "application/ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gridX.AllowPaging = false;
bindX();
gridX.HeaderRow.Style.Add("background-color", "#FFFFFF");
for (int i = 0; i < gridX.HeaderRow.Cells.Count; i++)
{
gridX.HeaderRow.Cells[i].Style.Add("background-color", "#df5015");
}
gridX.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
請幫我解決這個問題。
我會試試這個,然後回覆你。 – Wanderer
excel文件爲空 – Wanderer
現在我可以將它存儲在一個文件夾中。但我需要阻止下載。該怎麼辦? – Wanderer