Ask a Question related to ASP, Design and Development.
-
honeyb19 webforumsuser@macromedia.com #1
PDF Files
Would anyone happen to know why I can't have a link on my webpage for a PDF file? We need the link for customers to download a document, and we have it in other formats and they work.
How can I have a ink for .pdf file that will allow to download the file? Right now, it just comes up with the "Page annot be found" warning.
Thanks a bundle,
honeyb19
Referring URLs
[url]www.c-a-i.net/pages/procon.htm[/url]
honeyb19 webforumsuser@macromedia.com Guest
-
Any way to programatically convert Image PDF files to OCR searchable PDF files?
Hi, I have Adobe Acrobat Reader 7.0 Standard and was wondering if via using Visual Basic there was any way to programatically convert Image PDF... -
Urgent: Online files accessing local files Issue
Hi.. We are working on a online project where we have some 600 MB videos. The complete project is made using flash & HTML. -
.PDF files (as Mail attachments) areautomatically converted to .MIM files.
I send .pdf attachments from Mac (via Mail) and a PC user cannot open the files because they are converted to .MIM (I assume this is MIME).... -
Preserving links between Illustrator files and image files during system upgrade
Client is a design firm with thousands of Illustrator files spread across about five non-RAID external SCSI drives, most with partitions, attached to... -
Problems: uploading files have Chinese named files
Hi everyone, I try to upload file by using asp.net, code like that: <script language="VB" runat="server"> Sub Upload(Source As Object, e As... -
Dan Vendel *GOF* #2
Re: PDF Files
"honeyb19" [email]webforumsuser@macromedia.com[/email] wrote:
Either you didn't upload the PDF or the link is wrong.> Would anyone happen to know why I can't have a link on my webpage for a PDF file? We need the link for customers to download a document, and we have it in other formats and they work.
>
> How can I have a ink for .pdf file that will allow to download the file? Right now, it just comes up with the "Page annot be found" warning.
Can you show the code or a URL?
--
Dan Vendel - *GOF*
[url]http://www.vendel.info[/url]
Contact me directly by clicking here:
[url]http://contact.vendel.info[/url]
Formmail tutorial:
[url]http://www.vendel.info/tut/formmail.html[/url]
Nested table demonstration:
[url]http://www.vendel.info/tabletut/[/url]
Dan Vendel *GOF* Guest
-
Ville Leivo #3
Re: PDF Files
And name the file so that it doesn't have spaces in it's name. Those spaces might cause some troubles.. =)
-ville
darrel wrote:>>>How can I have a ink for .pdf file that will allow to download the file?
> Right now, it just comes up
>>>>with the "Page annot be found" warning.
>
> Your link is bad. Make sure it actually points at the PDF document.
>
> -Darrel
>
>Ville Leivo Guest
-
Capt. Verde #4
Re: PDF Files
I've asked around about this myself and the word I got was that in order for the file to be downloaded instead of displayed in your browser it has to be a file that your browser won't understand. if you have Adobe acrobat or reader installed then your browser will understand it and it will be displayed instead of downloaded, however your customer can click on the save as in the toolbar. If you don't have the reader or Acrobat installed then it will download. Some people have suggested to .zip the file to make sure it's downloaded instead of displayed.
Always remember, no matter where ya go....there ya are!
Capt. Verde Guest
-
Gary White #5
Re: PDF Files
On Wed, 23 Jul 2003 13:32:02 +0000 (UTC), "Capt. Verde"
<steve@capt-verde.net> wrote:
That's not entirely true. It depends on the content-type and>I've asked around about this myself and the word I got was that in
>order for the file to be downloaded instead of displayed in your
>browser it has to be a file that your browser won't understand.
content-disposition headers sent by the server.
Gary
Gary White Guest
-
Evertjan. #6
Re: pdf files
iffy agbim wrote on 23 jul 2003 in
microsoft.public.inetserver.asp.general:<% Response.Expires = 0 %>> I have a secure web site all my pages are in asp with security built in
> to it.
> Now I have a pdf file how can I convert it to asp aso I can make it
> secure
> any suggestions will be appreciated
<!--#include virtual ="/mysecurity.asp"-->
<%
Response.Clear
'''Response.Buffer = True
strFileName="/mysecretdir9874/mypdf.pdf"
strFilePath=server.mappath(strFilename)
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = 1
objStream.LoadFromFile strFilePath
Response.AddHeader "Content-Disposition", "attachment;" &
"Othernameformypdf.pdf"
Response.ContentType = "application/pdf"
Response.BinaryWrite objStream.Read
Response.Flush
objStream.Close
Set objStream = Nothing
%>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest
-
iffy agbim #7
Re: pdf files
thank you for your response but where and how do I include this code.
regards,
ify
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
iffy agbim Guest
-
Evertjan. #8
Re: pdf files
iffy agbim wrote on 23 jul 2003 in microsoft.public.inetserver.asp.general:
It is an asp-file on its own.>
> thank you for your response but where and how do I include this code.
> regards,
> ify
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest
-
iffy agbim #9
Re: pdf files
Do I put this in the root of my web site. and would this secure the pdf
files
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
iffy agbim Guest
-
Evertjan. #10
Re: pdf files
iffy agbim wrote on 23 jul 2003 in microsoft.public.inetserver.asp.general:
Why in the root ?> Do I put this in the root of my web site.
That depends on what you call "secure".> and would this secure the pdf files
If your logon code is secure, and you do not divulge the real directory of
the pdf, then reasonably so. Asp-coded logon sends the password
nonencrypted over the net.
It is never secure if you do not exactly understand what you are
programming.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest
-
iffy agbim #11
Re: pdf files
thank you for all your responses , I am relatively new to asp and have
never dne this before this is infact my first asp project.
Are you then saying that I should place the code you have given me in my
login page.pls breakdown what exactly should do in this regard.
thanks again
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
iffy agbim Guest
-
Evertjan. #12
Re: pdf files
iffy agbim wrote on 24 jul 2003 in microsoft.public.inetserver.asp.general:
I think a security related project with asp is not a beginners task.> thank you for all your responses , I am relatively new to asp and have
> never dne this before this is infact my first asp project.
> Are you then saying that I should place the code you have given me in my
> login page.pls breakdown what exactly should do in this regard.
> thanks again
You first have to get aquainted with asp, and perhaps also with vbscript
and/or javascript serverside.
Try some more simple and short codes and read and read what others have
don, trying to duplicate it on your own system in very small portions just
for your own use or testing.
Using code you do not completely understand is bad for your own education
and possibly dangerious in your application. Unlike clientside coding a
small serverside mistake can lay your whole system open to malicious
attack.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest
-
MBlom #13
PDF Files
When I worked on my page in Pub 2002, I did a hyperlink on
some pages to .pdf files. Now the links don't go
anywhere...I uploaded the .pdf files in hopes it would
know to go to them...but no luck.
Can anyone tell me how to do this? Thanks!
Michelle
MBlom Guest
-
Don Schmidt #14
Re: PDF Files
What I do is put the available pdf files in a directory and then where they
are listed, create the link to the file in the directory.
My web site is:
[url]http://www.pacifier.com/~dschmidt/osia_vancouver_usa/index.html[/url]
In the location where all the html and gif files there is the directory
"il_messaggio" where all the issues reside.
The link path for the January 2004 issue is:
[url]http://www.pacifier.com/~dschmidt/osia_vancouver_usa/il_messaggio/2004_01.pdf[/url]
It is mandatory that the font case (either upper or lower) be followed
exactly.
Ciao,
--
Don
--------
Vancouver, USA - One of the great cities in one of the 45+ countries in
America!
"MBlom" <puncher87@yahoo.com> wrote in message
news:00bb01c3d34a$72332160$a001280a@phx.gbl...> When I worked on my page in Pub 2002, I did a hyperlink on
> some pages to .pdf files. Now the links don't go
> anywhere...I uploaded the .pdf files in hopes it would
> know to go to them...but no luck.
>
> Can anyone tell me how to do this? Thanks!
>
> Michelle
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
Version: 6.0.558 / Virus Database: 350 - Release Date: 1/2/04
Don Schmidt Guest
-
David Bartosik - MS MVP #15
Re: PDF Files
As Don points out, your urls in the hyperlinks MUST match the url of the
location of the pdf file. Otherwise you get links that go nowhere.
This article may help your understanding-
[url]http://www.davidbartosik.com/pub2002/pub2002_27.htm[/url]
--
David Bartosik - Microsoft MVP
Visit [url]www.davidbartosik.com[/url]
for Publisher and Web Design
Tips and How-to's.
"MBlom" <puncher87@yahoo.com> wrote in message
news:00bb01c3d34a$72332160$a001280a@phx.gbl...> When I worked on my page in Pub 2002, I did a hyperlink on
> some pages to .pdf files. Now the links don't go
> anywhere...I uploaded the .pdf files in hopes it would
> know to go to them...but no luck.
>
> Can anyone tell me how to do this? Thanks!
>
> Michelle
David Bartosik - MS MVP Guest
-
MBlom #16
Re: PDF Files
Thanks again, David. I read your suggestion on your site
and it makes sense...so if I have built a 20 page site all
as one, is there hope for me? Any way to convert it to
single pages? You are exactly right, I was having to
upload everything again when I had only made a change to
one page.
Do I then make a new page that will contain the .pdf
file? Do I paste the .pdf file into that? I'm still not
clear. Thanks.the url of the>-----Original Message-----
>As Don points out, your urls in the hyperlinks MUST matchnowhere.>location of the pdf file. Otherwise you get links that goon>This article may help your understanding-
>[url]http://www.davidbartosik.com/pub2002/pub2002_27.htm[/url]
>
>--
>David Bartosik - Microsoft MVP
>Visit [url]www.davidbartosik.com[/url]
>for Publisher and Web Design
>Tips and How-to's.
>
>"MBlom" <puncher87@yahoo.com> wrote in message
>news:00bb01c3d34a$72332160$a001280a@phx.gbl...>> When I worked on my page in Pub 2002, I did a hyperlink>>> some pages to .pdf files. Now the links don't go
>> anywhere...I uploaded the .pdf files in hopes it would
>> know to go to them...but no luck.
>>
>> Can anyone tell me how to do this? Thanks!
>>
>> Michelle
>
>.
>MBlom Guest
-
David Bartosik - MS MVP #17
Re: PDF Files
no page contains another file.
files link to one another.
all files regardless of type.
that is what a web site is, linked files.
myhomepage.htm linked to mypics.htm
is the same thing functionally as
myhomepage.htm linked to mypdffile.pdf
--
David Bartosik - Microsoft MVP
Visit [url]www.davidbartosik.com[/url]
for Publisher and Web Design
Tips and How-to's.
"MBlom" <puncher87@yahoo.com> wrote in message
news:080701c3d39f$5fe96d20$a301280a@phx.gbl...> Thanks again, David. I read your suggestion on your site
> and it makes sense...so if I have built a 20 page site all
> as one, is there hope for me? Any way to convert it to
> single pages? You are exactly right, I was having to
> upload everything again when I had only made a change to
> one page.
>
> Do I then make a new page that will contain the .pdf
> file? Do I paste the .pdf file into that? I'm still not
> clear. Thanks.> the url of the> >-----Original Message-----
> >As Don points out, your urls in the hyperlinks MUST match> nowhere.> >location of the pdf file. Otherwise you get links that go> on> >This article may help your understanding-
> >[url]http://www.davidbartosik.com/pub2002/pub2002_27.htm[/url]
> >
> >--
> >David Bartosik - Microsoft MVP
> >Visit [url]www.davidbartosik.com[/url]
> >for Publisher and Web Design
> >Tips and How-to's.
> >
> >"MBlom" <puncher87@yahoo.com> wrote in message
> >news:00bb01c3d34a$72332160$a001280a@phx.gbl...> >> When I worked on my page in Pub 2002, I did a hyperlink> >> >> some pages to .pdf files. Now the links don't go
> >> anywhere...I uploaded the .pdf files in hopes it would
> >> know to go to them...but no luck.
> >>
> >> Can anyone tell me how to do this? Thanks!
> >>
> >> Michelle
> >
> >.
> >
David Bartosik - MS MVP Guest
-
JL Paules #18
Re: pdf files
Publisher will not create .pdf files. You will need thrid party software. I
use Adobe Acrobat for mine. I've also created an ad for a magazine and sent
it to the print house. They had no trouble handling the file.
There are several low-cost (and free, I think) programs available. However,
I'm not sure if you can produce a CMYK file with them. You do tend to get
what you pay for. Do a search in Google and see what you can learn.
--
JoAnn Paules
MVP Microsoft [Publisher]
"Deb" <anonymous@discussions.microsoft.com> wrote in message
news:3A262F81-D0C7-47B8-AD27-11443A730490@microsoft.com...who is requiring me to send a different format. She is using Quark, but she> Hi~ I have created an ad in Publisher 2002 and I've sent it to an agency
said if I file it as a pdf file and email it to her it will be able to work.
It is being printed 4-color process (glossy) on the inside cover of a
catalog. I cannot find a pdf format inside publisher 2002, is there a
comparable format? This ad has a 4-color photo in it and I am concerned
about losing the quality of the photo through the format transfer. She also
said a jpeg file might work, will I lose the quality if I transfer it to
this format too? Do I have another option? I know I could send her the photo
and she could re-create it in Quark, but she doesn't have the font Vivaldi.> ~Thanks, Deb
> [url]www.sweetwaterbathandbody.com[/url]
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
Version: 6.0.690 / Virus Database: 451 - Release Date: 5/22/2004
JL Paules Guest
-
Don Schmidt #19
Re: pdf files
CMYK color isn't something I get into but in Publisher 2000, the Help file
has some guidance for Publisher to convert RGB to CMYK.
--
Don
--------
Vancouver, USA - One of the great cities in one of the 45+ countries in the
Americas!
"JL Paules" <JL_Amerson@hotmail.com> wrote in message
news:10bcjocobblsu63@corp.supernews.com...I> Publisher will not create .pdf files. You will need thrid party software.sent> use Adobe Acrobat for mine. I've also created an ad for a magazine andHowever,> it to the print house. They had no trouble handling the file.
>
> There are several low-cost (and free, I think) programs available.she> I'm not sure if you can produce a CMYK file with them. You do tend to get
> what you pay for. Do a search in Google and see what you can learn.
>
> --
> JoAnn Paules
> MVP Microsoft [Publisher]
>
>
>
> "Deb" <anonymous@discussions.microsoft.com> wrote in message
> news:3A262F81-D0C7-47B8-AD27-11443A730490@microsoft.com...> who is requiring me to send a different format. She is using Quark, but> > Hi~ I have created an ad in Publisher 2002 and I've sent it to an agencywork.> said if I file it as a pdf file and email it to her it will be able toalso> It is being printed 4-color process (glossy) on the inside cover of a
> catalog. I cannot find a pdf format inside publisher 2002, is there a
> comparable format? This ad has a 4-color photo in it and I am concerned
> about losing the quality of the photo through the format transfer. Shephoto> said a jpeg file might work, will I lose the quality if I transfer it to
> this format too? Do I have another option? I know I could send her theVivaldi.> and she could re-create it in Quark, but she doesn't have the font>> > ~Thanks, Deb
> > [url]www.sweetwaterbathandbody.com[/url]
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
> Version: 6.0.690 / Virus Database: 451 - Release Date: 5/22/2004
>
>
Don Schmidt Guest
-
Jane #20
PDF Files
How do I attach/insert a pdf file to a web site/page that has been designed in Publisher 2003. I can get the web page entered into the publisher web page, but when I "view in the web" layout it does not open
Thank you
Jane
Jane Guest



Reply With Quote

