The information in this article applies to:
SYMPTOMS
The example provided in the Commerce 3.0 documentation, which allows for the display or download of files that are not in a virtual directory does not work if there is anything else in the .asp page.
CAUSEThe reason for this is because data that is wrapped in a mime type is all sent to the mime handler. When you put text on the page, the mime type is overridden, causing the browser to handle the data itself rather than passing it to a mime handler. WORKAROUNDUse the following script in a .asp page by itself for a GIF, JPG, ZIP, or GZ file type: <%@ LANGUAGE = VBScript %><%The images will display in the page and you will be prompted for the download of the zip file. Note, the name of the file that you are prompted to save is not the file that you did a BinaryRead on, rather it is the same as the .asp page without the extensions. MORE INFORMATION
BinaryWrites of executables do not work even with the contenttype =
"octet-stream" because of client configurations that automatically attempt
to open the .exe in the browser.
Additional query words:
Keywords : |
Last Reviewed: March 19, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |