Redirecting a page after a PDF download

后端 未结 5 1209
耶瑟儿~
耶瑟儿~ 2020-12-11 07:55

I have an aspx (say 1.aspx) page from where first I am downloading a pdf file and then I want to redirect to some Thanks.aspx page. The code is this:

protect         


        
5条回答
  •  醉梦人生
    2020-12-11 08:32

    See the article mentioned in this accepted answer: https://stackoverflow.com/a/11018277/1037864 (direct link: http://gruffcode.com/2010/10/28/detecting-the-file-download-dialog-in-the-browser/)

    The idea is to set a cookie and send it together with the file. Meanwhile you let the waiting page block the UI while it is waiting for the cookie to arrive.

提交回复
热议问题