Ask a Question related to ASP, Design and Development.
-
dany #1
forced PDF-download in popup
I want a forced PDF-download but all that header-stuff is new for me....
I wrote a little asp-script:
<%
Filename = "download.pdf"
response.addheader "content-disposition","attachment; filename=" & Filename
server.transfer Filename
%>
It only works with Internet Exporer (mac & pc) but not with Opera, Netscape
7,... ?!
I open it in a small popup but now I would have seen closed the popup
automatically
A simple "response.write" with "window.close()"-stuff don't work?!
ciao bye
d.
dany Guest
-
File Download PopUp
I received an upgrade to my Windows XP operating system today and now get a "File Download" popup window everytime I access a file over the... -
Popup Download Window
Hi all, I have <b>Link</b> tag that contains the URL for a specific file in the server. I want that once the user click on that link a popup... -
Need Falsh 8 but no download, no info bar, no popup, no direct link!!!!
YES I'm stressed! -
"forced" download from ASP
Hi All, First of all I'm mostly an MS Access guy (and novice learning MSSQL guy) and put on this project because of personnel changes, etc and... -
forced file download
Wrote a script (tried to;) which should force to download a pdf-file, but it doesn't work on every browser. What should be changed ? SCRIPT:... -
Tom Kaminski [MVP] #2
Re: forced PDF-download in popup
"dany" <danyjpr_antispam_@yucom.be> wrote in message
news:oNTLa.5839$P26.5778@afrodite.telenet-ops.be...Filename> I want a forced PDF-download but all that header-stuff is new for me....
>
> I wrote a little asp-script:
> <%
> Filename = "download.pdf"
> response.addheader "content-disposition","attachment; filename=" &Netscape> server.transfer Filename
> %>
>
> It only works with Internet Exporer (mac & pc) but not with Opera,You're almost there ... use ADODB.Stream and Response.BinaryWrite.> 7,... ?!
>
> I open it in a small popup but now I would have seen closed the popup
> automatically
> A simple "response.write" with "window.close()"-stuff don't work?!
[url]http://support.microsoft.com/?kbid=276488[/url]
--
Tom Kaminski IIS MVP
[url]http://www.iistoolshed.com/[/url] - tools, scripts, and utilities for running IIS
[url]http://mvp.support.microsoft.com/[/url]
[url]http://www.microsoft.com/windowsserver2003/community/centers/iis/[/url]
Tom Kaminski [MVP] Guest



Reply With Quote

