K
Ken Ross
Hi all,
I have an asp.net 2.0 page that allows users to download a file after
clicking the "download now" button. I'm using very similar code to what
I've seen on a number of other posts:
Response.Clear()
Response.ContentType = "application/octet-stream"
Response.TransmitFile(fullFilePath)
Response.End()
What I'd really like to have happen is that after the user clicks the
button and the file download completes, have the page refresh with some
sort of "thank you" message.
I've wasted hours [and hours] trying to work out a solution to this but no
love.
Thanks for any help you can give.
Ken
I have an asp.net 2.0 page that allows users to download a file after
clicking the "download now" button. I'm using very similar code to what
I've seen on a number of other posts:
Response.Clear()
Response.ContentType = "application/octet-stream"
Response.TransmitFile(fullFilePath)
Response.End()
What I'd really like to have happen is that after the user clicks the
button and the file download completes, have the page refresh with some
sort of "thank you" message.
I've wasted hours [and hours] trying to work out a solution to this but no
love.
Thanks for any help you can give.
Ken