vote up 1 vote down star

hi, I was wondering if there was any method to implement browser's download file prompt using javascript. My reason - well users will be uploading files to a local fileserver which cannot be accessed from the webserver. In other words, both will be on different domains! e.g. let’s say websites hosted on www.xyz.com, but files would reside on local file server with address like \10.10.10.01\Files\file.txt. How am I uploading/transferring file to local fileserver... using ACTIVEX(yikes) & VBscript!!!! (don’t ask :-)

so i am storing local file path in my database and binding that data to a grid. So when the user clicks on that link, the file opens in a window (using javascript).

Problem is certain file types like text, jpg, pdf, etc open inside browser window. How would i be able to implement content-type or content-disposition using client side scripting? Is that even possible?

hoping my description was clear. Any ideas?

EDIT: the local file server has a window's shared folder on which the files are saved.

flag
What kind of server is your 'local file server'? An actual HTTP/FTP/whatever server or are you talking about Windows' shared folders (ie did you mean \\10.10.10.01 instead of //10.10.10.01? – Christoph Apr 7 at 19:19
Its a shared folder in windows & actual path to file would be '\\10.10.10.01\Files\file.txt' – aix Apr 8 at 10:26
@aix: then you're out of luck - there's no way to sent the appropriate meta-information via HTTP headers – Christoph Apr 8 at 15:48

4 Answers

vote up 2 vote down

"content-disposition: attachment" is pretty much the only way to force that, and this MUST be set in the response header.

link|flag
How can i set it on the client side? Currently i am using javascript to open the file. Calling window.open('\\10.10.10.01\Files\file.txt') to open the file. This would open the file in a window. Isnt "content-disposition: attachment" a server side response header setting? – aix Apr 8 at 10:29
vote up 1 vote down

I am pretty sure there is no way to do it with javascript.

link|flag
:-\ well tried this webdeveloper.com/forum/… but no luck... – aix Apr 8 at 10:31
vote up 1 vote down

Take a look at this article on content-disposition. As said, it has to be set in the response header, and isn't a Javascript implementation.

link|flag
Copying comments from above-How can i set it on the client side? currently i am using javascript to open the file. Calling window.open('\\10.10.10.01\Files\file.txt') to open the file. This would open the file in a window. Isnt "content-disposition: attachment" a server side response header setting? – aix Apr 8 at 10:32
Yes, it is a server-side heading. Take a look at this article: jtricks.com/bits/content_disposition.html/… However, as it notes, the JS implementation is patchy, and my have become obsolete in versions > IE 6 – Perspx Apr 8 at 17:53
vote up 0 vote down

You could try using a plain hyperlink with type="application/octet-stream". Seems to work in FF, but IE and Opera ignore the attribute.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.