Ask a Question related to ASP, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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.
    3. .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)....
    4. 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...
    5. 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...
  3. #2

    Default Re: PDF Files

    "honeyb19" [email]webforumsuser@macromedia.com[/email] wrote:
    > 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.
    Either you didn't upload the PDF or the link is wrong.
    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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default Re: PDF Files

    On Wed, 23 Jul 2003 13:32:02 +0000 (UTC), "Capt. Verde"
    <steve@capt-verde.net> wrote:
    >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.
    That's not entirely true. It depends on the content-type and
    content-disposition headers sent by the server.


    Gary
    Gary White Guest

  7. #6

    Default Re: pdf files

    iffy agbim wrote on 23 jul 2003 in
    microsoft.public.inetserver.asp.general:
    > 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
    <% Response.Expires = 0 %>
    <!--#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

  8. #7

    Default 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

  9. #8

    Default Re: pdf files

    iffy agbim wrote on 23 jul 2003 in microsoft.public.inetserver.asp.general:
    >
    > 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!
    >
    It is an asp-file on its own.

    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)
    Evertjan. Guest

  10. #9

    Default 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

  11. #10

    Default Re: pdf files

    iffy agbim wrote on 23 jul 2003 in microsoft.public.inetserver.asp.general:
    > Do I put this in the root of my web site.
    Why in the root ?
    > and would this secure the pdf files
    That depends on what you call "secure".

    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

  12. #11

    Default 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

  13. #12

    Default Re: pdf files

    iffy agbim wrote on 24 jul 2003 in microsoft.public.inetserver.asp.general:
    > 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
    I think a security related project with asp is not a beginners task.

    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

  14. #13

    Default 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

  15. #14

    Default 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

  16. #15

    Default 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

  17. #16

    Default 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.
    >-----Original Message-----
    >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
    >
    >
    >.
    >
    MBlom Guest

  18. #17

    Default 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.
    > >-----Original Message-----
    > >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

  19. #18

    Default 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...
    > Hi~ I have created an ad in Publisher 2002 and I've sent it to an agency
    who is requiring me to send a different format. She is using Quark, but she
    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

  20. #19

    Default 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...
    > 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...
    > > Hi~ I have created an ad in Publisher 2002 and I've sent it to an agency
    > who is requiring me to send a different format. She is using Quark, but
    she
    > 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
    >
    >

    Don Schmidt Guest

  21. #20

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139