I have a hyperlink to an executable like so: <a href="xxx.exe"> Run Now </a>
I’m trying to make the download dialog box appear without the save function as it is to only run only on the user’s computer.
Is there any way to manipulate the file download dialog box?
FYI: Running on Windows Server ’03’ – IIS.
Please no suggestions for a WCF program.
Okay I found it for anyone stumbling upon this conundrum in the future.
Add the following tag to your head section:
<meta name="DownloadOptions" content="nosave" />and the file download dialog box will not display the “save” option.For the user to not open/run but save replace “nosave” with “noopen”