0
我正在按鈕單擊生成excel文件下載。下載excel後,響應正在停止並結束。您能否建議我如何防止停止,以便用戶無需刷新頁面即可根據需要多次下載?Response.End()後執行代碼
Response.Clear();
Response.ContentType =
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
Response.AddHeader
(
"content-disposition",
"attachment; filename=PFMWarehouseList_"
+ DateTime.Today.ToString("dd/MM/yyyy") + ".xlsx"
);
Response.BinaryWrite(pck.GetAsByteArray());
//HttpContext.Current.ApplicationInstance.CompleteRequest();
Response.End();
可能會開始下載一個新的頁面.. – iJade
你可以告訴你如何實現一個按鈕的點擊,或者是你試過嗎? –
如果你想避免回發,我會建議JavaScript。 – snowYetis