Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

prompt "Save as" dialog for image
Hi there
I'm trying to force save as dialogue using this code in download.asp..but
when it runs it prompts for download.asp to save or open.

code snippet (from aspfaq.com)

Response.ContentType = "application/x-unknown" ' arbitrary
fn = "wallpaper_1_1.jpg"
Response.write "<br>" & Server.MapPath("wallpaper") & "<br>"
FPath = Server.MapPath("wallpaper") & fn
Response.AddHeader "Content-Disposition","attachment; filename=" & fn

Set adoStream = CreateObject("ADODB.Stream")
adoStream.Open()
adoStream.Type = 1
adoStream.LoadFromFile(FPath)
Response.BinaryWrite adoStream.Read()
adoStream.Close
Set adoStream = Nothing


I want this page to prompt save image option, not page itself.

Any help would be appreciated!!!



Report this thread to moderator Post Follow-up to this message
Old Post
dave
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
Are you accessing the page via http?  Like, you're going to
http://localhost/download.asp as opposed to C:\Inetpub\wwwroot\download.asp?

Ray at work


"dave" <forged@foo.netREMOVE> wrote in message
news:%232ZC2QdzEHA.2804@TK2MSFTNGP15.phx.gbl...
> Hi there
> I'm trying to force save as dialogue using this code in download.asp..but
> when it runs it prompts for download.asp to save or open.
>
> code snippet (from aspfaq.com)
>
>    Response.ContentType = "application/x-unknown" ' arbitrary
>    fn = "wallpaper_1_1.jpg"
>   Response.write "<br>" & Server.MapPath("wallpaper") & "<br>"
>    FPath = Server.MapPath("wallpaper") & fn
>    Response.AddHeader "Content-Disposition","attachment; filename=" & fn
>
>    Set adoStream = CreateObject("ADODB.Stream")
>    adoStream.Open()
>    adoStream.Type = 1
>    adoStream.LoadFromFile(FPath)
>    Response.BinaryWrite adoStream.Read()
>    adoStream.Close
>    Set adoStream = Nothing
>
>
> I want this page to prompt save image option, not page itself.
>
> Any help would be appreciated!!!
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
Ray Costanzo [MVP]
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
yes
i m accessling thru http:
http://localhost/download.asp
and its asking me open, save,cancel options
dave

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:Ofg8BWdzEHA.1300@TK2MSFTNGP14.phx.gbl...
> Are you accessing the page via http?  Like, you're going to
> http://localhost/download.asp as opposed to
C:\Inetpub\wwwroot\download.asp?
>
> Ray at work
>
>
> "dave" <forged@foo.netREMOVE> wrote in message
> news:%232ZC2QdzEHA.2804@TK2MSFTNGP15.phx.gbl... 
download.asp..but 
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
dave
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
Do you have an On Error Resume Next?  Well, regardless, a couple of changes
will be necessary.

When you Response.write FPath, did you notice that there was no \ between
the directory name and the filename?  You'll need that.  Also, make sure you
do not leave the Response.Write code in there when you get this working.
Try this code:

Response.ContentType = "application/x-unknown" ' arbitrary
fn = "wallpaper_1_1.jpg"
'Response.write "<br>" & Server.MapPath("wallpaper") & "<br>"
FPath = Server.MapPath("wallpaper") &  "\" & fn
Response.AddHeader "Content-Disposition","attachment; filename=" & fn

Set adoStream = CreateObject("ADODB.Stream")
adoStream.Open()
adoStream.Type = 1
adoStream.LoadFromFile(FPath)
Response.BinaryWrite adoStream.Read()
adoStream.Close
Set adoStream = Nothing

Ray at home

"dave" <forged@foo.netREMOVE> wrote in message
news:eQbeeqdzEHA.1652@TK2MSFTNGP11.phx.gbl...
> yes
> i m accessling thru http:
> http://localhost/download.asp
> and its asking me open, save,cancel options
> dave
>
> "Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
> message news:Ofg8BWdzEHA.1300@TK2MSFTNGP14.phx.gbl... 
> C:\Inetpub\wwwroot\download.asp? 
> download.asp..but 
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
Ray Costanzo [MVP]
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
yeh man, it worked
thanx for help
dev

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:egtV0kezEHA.3588@TK2MSFTNGP14.phx.gbl...
> Do you have an On Error Resume Next?  Well, regardless, a couple of
changes
> will be necessary.
>
> When you Response.write FPath, did you notice that there was no \ between
> the directory name and the filename?  You'll need that.  Also, make sure
you
> do not leave the Response.Write code in there when you get this working.
> Try this code:
>
>     Response.ContentType = "application/x-unknown" ' arbitrary
>     fn = "wallpaper_1_1.jpg"
>    'Response.write "<br>" & Server.MapPath("wallpaper") & "<br>"
>     FPath = Server.MapPath("wallpaper") &  "\" & fn
>     Response.AddHeader "Content-Disposition","attachment; filename=" & fn
>
>     Set adoStream = CreateObject("ADODB.Stream")
>     adoStream.Open()
>     adoStream.Type = 1
>     adoStream.LoadFromFile(FPath)
>     Response.BinaryWrite adoStream.Read()
>     adoStream.Close
>     Set adoStream = Nothing
>
> Ray at home
>
> "dave" <forged@foo.netREMOVE> wrote in message
> news:eQbeeqdzEHA.1652@TK2MSFTNGP11.phx.gbl... 
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
dave
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
just one question
how do i make this code to work with most common all browser
dev

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:egtV0kezEHA.3588@TK2MSFTNGP14.phx.gbl...
> Do you have an On Error Resume Next?  Well, regardless, a couple of
changes
> will be necessary.
>
> When you Response.write FPath, did you notice that there was no \ between
> the directory name and the filename?  You'll need that.  Also, make sure
you
> do not leave the Response.Write code in there when you get this working.
> Try this code:
>
>     Response.ContentType = "application/x-unknown" ' arbitrary
>     fn = "wallpaper_1_1.jpg"
>    'Response.write "<br>" & Server.MapPath("wallpaper") & "<br>"
>     FPath = Server.MapPath("wallpaper") &  "\" & fn
>     Response.AddHeader "Content-Disposition","attachment; filename=" & fn
>
>     Set adoStream = CreateObject("ADODB.Stream")
>     adoStream.Open()
>     adoStream.Type = 1
>     adoStream.LoadFromFile(FPath)
>     Response.BinaryWrite adoStream.Read()
>     adoStream.Close
>     Set adoStream = Nothing
>
> Ray at home
>
> "dave" <forged@foo.netREMOVE> wrote in message
> news:eQbeeqdzEHA.1652@TK2MSFTNGP11.phx.gbl... 
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
dave
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
Do you have evidence that suggests that it doesn't?

Ray at home

"dave" <forged@foo.netREMOVE> wrote in message
news:OGiw5rezEHA.3004@TK2MSFTNGP10.phx.gbl...
> just one question
> how do i make this code to work with most common all browser
> dev



Report this thread to moderator Post Follow-up to this message
Old Post
Ray Costanzo [MVP]
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
no..but
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:#by4mefzEHA.2016@TK2MSFTNGP15.phx.gbl...
> Do you have evidence that suggests that it doesn't?
>
> Ray at home
>
> "dave" <forged@foo.netREMOVE> wrote in message
> news:OGiw5rezEHA.3004@TK2MSFTNGP10.phx.gbl... 
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
dave
11-19-04 08:55 AM


Re: prompt "Save as" dialog for image
no but
http://www.aspfaq.com/show.asp?id=2161
in last lines of articles says u might have to change addheader lines to get
correct filename...
thts wht puzzling me
dave

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:#by4mefzEHA.2016@TK2MSFTNGP15.phx.gbl...
> Do you have evidence that suggests that it doesn't?
>
> Ray at home
>
> "dave" <forged@foo.netREMOVE> wrote in message
> news:OGiw5rezEHA.3004@TK2MSFTNGP10.phx.gbl... 
>
>



Report this thread to moderator Post Follow-up to this message
Old Post
dave
11-19-04 08:55 AM


Re: Re: prompt "Save as" dialog for image
thank u all

Report this thread to moderator Post Follow-up to this message
Old Post
themask
12-22-04 10:42 PM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

ASP archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 06:40 AM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.