0
如何在response.redirect之後優化代碼? 我想強制文件下載使用response.redirect,一旦文件被下載,我想顯示模式彈出發送電子郵件。在asp.net中下載文件併發送電子郵件
但在response.redirect之後,彈出窗口沒有被調用。 請幫助我如何做到這一點,
感謝
UPDATE:
感謝您的答覆。 我正在這樣做。有什麼建議麼?
Response.AddHeader("Content-Disposition", "attachment;filename=" + FileName.Name);
long FileSize = myFile.Length;
byte[] Buffer = new byte[(int)FileSize];
myFile.Read(Buffer, 0, (int)FileSize);
myFile.Close();
Response.BinaryWrite(Buffer);
// Response.Redirect(filepath,false);
Response.Flush();
Response.Close();
ScriptManager.RegisterStartupScript(this, this.GetType(), "ShowPopup", "window.setTimeout('PopupModal()',50);", true);