I have a page that sends a binari file, pdf, word or excel to web browser. In firefox, and IE both opens a dialog asking what do you whant to do with this file, "open" or "save"
but Chrome directly save it to your computer.
Is it possible to make Chrome ask you what do you want to do with this file, placing some metadata into web response before sending the file to browser?
It isn't possible to force Chrome to prompt the save dialog. The user has to change that behavior on chrome's configuration (advanced settings).
You need to send some headers so the browser knows how to handle the thing you are streaming like:
which will force a download. Also refer this link for more information :
http://www.devtoolshed.com/aspnet-download-file-web-browser
Thanks
maybe it will be helpful