Setting filename including non ascii characters in asp download!

H

Hans

Hi!

I have a classic ASP site (not ASP.NET) where the user is able to download
documents. The documents are stored inside an Oracle database set up for
UTF-8 encoding. In the VB6 code (COM+) that fetches the document I have code
like this (in my asp page I have set codepage=65001 which is utf-8)

GetObjectContext("Response").AddHeader "Content-Length",
rs("DocData").ActualSize
GetObjectContext("Response").contentType = "application/octet-stream"
GetObjectContext("Response").AddHeader "Content-Disposition", "attachment;
filename=""" & rs("orgfilename") & """"
GetObjectContext("Response").BinaryWrite
rs("DocData").GetChunk(rs("DocData").ActualSize)


The problem is that if the filename contains national characters they are
not shown correct in the save as dialog. I have tried to understand the RFC
documents about content-transfere-encoding but I have so far failed making
this work.

I can get this to work in IE if I URLPathEncode the filename (normal
urlencode is not working)
GetObjectContext("Response").AddHeader "Content-Disposition", "attachment;
filename=""" & GetObjectContext("Server").URLPathEncode(rs("orgfilename")) &
""";"

Mozilla compatible browsers do not like this. They suggest the the filename
dok.asp, which is the name of the asp file that instantiate the com+
component that do the actual download.

Would really appreciate if someone can shed some light over this (an example
would be excellent).

Sorry to crosspost this message but I'm not sure if my problems is in my
code, IIS or maybe incorrect headers.

Regards
/Hans
 
H

Hans

Hi Egbert and thanks for your reply!

My problem is not really that the save as dialog is not shown (in fact it is
shown). The main problem is that the filename I set in the content
disposition (including non ascii characters) is not shown in the save as
dialog. I can get this to work on my machine with IE but it fails with
Mozilla browsers (and I have read that the solution I have for IE that works
on my machine is not working on asian versions of IE
http://lists.w3.org/Archives/Public/ietf-http-wg/2004JanMar/0000.html).

I tried to read the rfc2231 but I cannot get it to work.
http://www.faqs.org/rfcs/rfc2231.html

Regards
/Hans
 
E

Egbert Nierop \(MVP for IIS\)

Hans said:
Hi Egbert and thanks for your reply!

My problem is not really that the save as dialog is not shown (in fact it
is
shown). The main problem is that the filename I set in the content

Right. I know what you mean.
disposition (including non ascii characters) is not shown in the save as
dialog. I can get this to work on my machine with IE but it fails with
Mozilla browsers (and I have read that the solution I have for IE that
works
on my machine is not working on asian versions of IE
http://lists.w3.org/Archives/Public/ietf-http-wg/2004JanMar/0000.html).

I tried to read the rfc2231 but I cannot get it to work.
http://www.faqs.org/rfcs/rfc2231.html


Sorry but, browsers don't follow the rules. The only solution would be to
have an ISAPI sort of solution which generates the filename inside the url
instead of using a content-type solution, but that's an expensive joke.
(such filter would fake a filename using
http://www.yourserver.com/yourfile blah.doc or something like that.)
 
K

Katarina WONG

Hello,

Good The solution to your problem exists !

Bad I can not provide you with working ASP code.

I ran into the very same problem just a few days ago when coding the
download fastcgi of our site. I have found the proper encoding for
Internet Explorer (only tested on Version 6 / WinXP so far) and for
Firefox (again only tested on WinXP yet).

For IE, I think you will find this page useful:

http://www.codeproject.com/aspnet/NonUSASCII.asp

I reproduced the filename encoding and its works great (all our code is
using the Ruby language).

This DOES NOT WORK for Firefox, so I test the HTTP_USER_AGENT value and
use the word encoding described in RFC2231. I use the Base64 encoding,
not the Quoted-printable which does not work.

For these two browsers everything is perfect, I tested it with really
weird (from my point of view of course ;) ) filenames mixing french,
icelandic and korean.

As far as Opera is concerned, I have yet to find the correct way to
encode the file name. I can not imagine it is not possible, but I am
stuck on this browser. :(

Hope you find this helpful, feel free to contact me if you do not get it
working. I do not follow this newsgroup.

Katarina.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,066
Latest member
VytoKetoReviews

Latest Threads

Top