Hi Tim,
Ahh, Then I should say thanks to Shawn again.
I haven't noticed that
contect-disposition is so important under this situation. Thanks very much
for your response.
I just did a quick search in MSDN and found this info:
-----------
Content-disposition is an extension to the MIME protocol that instructs a
MIME user agent on how it should display an attached file. The range of
valid values for content-disposition are discussed in Request for Comment
(RFC) 1806 (see the "References" section of this article). This article
focuses on the "attachment" argument, which instructs a user agent (in this
case, Internet Explorer) to save a file to disk instead of saving it inline.
When Internet Explorer receives the header, it raises a File Download
dialog box whose file name box is automatically populated with the file
name that is specified in the header. (Note that this is by design; there
is no way to use this feature to save a document to the user's computer
without prompting him or her for a save location.)
There are two ways that you can use Internet Explorer to specify a
content-disposition header for a file: dynamically and statically.
To apply the header dynamically, create an Active Server Pages (ASP) file
that writes the document out to the browser. Use the Response.AddHeader
method to add the content-disposition header. For example:
Response.AddHeader "content-disposition","attachment; filename=fname.ext"
Instructions on how to perform a binary write for nontext documents are
available in the following Microsoft Knowledge Base article:
193998 HOWTO: Read and Display Binary Data in ASP
This technique is ideal when you want to protect a document store on your
server, especially one that exists outside of the Web root.
To apply the header statically, right-click the document in the Internet
Service Manager, and then select Properties. Select the HTTP Headers tab
and enter the content-disposition header there. This works best when you
only want to apply content-disposition to a few files on your system and
don't require the overhead of ASP.
Please note that this solution will not work in Internet Explorer 4.01 due
to a bug. For additional information, click the article number below to
view the article in the Microsoft Knowledge Base:
182315 FIX: Content-Disposition: Does Not Force File Download Dialog
-----------
RFC 1806, RFC 2183 describe more on it.
Anyway, I am glad that the problem is resolved. If you have any more
questions, pleaes feel free to post in the group.
Thanks again for participating the community.
Best regards,
Yanhong Huang
Microsoft Community Support
Get Secure! ¨C
www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.