Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > ASP to PDF

Reply
Thread Tools

ASP to PDF

 
 
Mangler
Guest
Posts: n/a
 
      12-16-2008
Just wondering how I can generate a pdf file through an ASP page.
Here is what I am doing, There is a page where a customer will input
some information like their address, email, etc. When the form is
submitted I want to place that information into a PDF file that will
be displayed in the browser for them to print out.

Well thats it in a nutshell, can someone point me in the correct
direction?
 
Reply With Quote
 
 
 
 
Adrienne Boswell
Guest
Posts: n/a
 
      12-16-2008
Gazing into my crystal ball I observed Mangler
<> writing in news:d3de7f73-95d8-43ea-a791-
:

> Just wondering how I can generate a pdf file through an ASP page.
> Here is what I am doing, There is a page where a customer will input
> some information like their address, email, etc. When the form is
> submitted I want to place that information into a PDF file that will
> be displayed in the browser for them to print out.
>
> Well thats it in a nutshell, can someone point me in the correct
> direction?
>


Out of curiosity, why bother with a PDF file for just the users'
information? Why not use a print stylesheet?

<style type="text/css">
@media screen {
#nav {float:left; width:15%}
#footer {clear:both; font-size:80%;}
#content {width:80%; font-size:100%}
}
@media print {
#nav {display:none;}
#footer {display:none;}
#content {width:100%; font-size:10pt;}
}
</style>

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

 
Reply With Quote
 
 
 
 
Mangler
Guest
Posts: n/a
 
      12-16-2008

Because this is a return shipping label and the info they put in the
fields needs to be in the label, the label is a pre made picture.
 
Reply With Quote
 
Mike Brind
Guest
Posts: n/a
 
      12-16-2008

"Mangler" <> wrote in message
news:d3de7f73-95d8-43ea-a791-...
> Just wondering how I can generate a pdf file through an ASP page.
> Here is what I am doing, There is a page where a customer will input
> some information like their address, email, etc. When the form is
> submitted I want to place that information into a PDF file that will
> be displayed in the browser for them to print out.
>
> Well thats it in a nutshell, can someone point me in the correct
> direction?


There are a number of thrid party components for this. One I've used with
reasonable results is by Persits: ASPPdf.
http://www.asppdf.com/

--
Mike Brind
MVP - ASP/ASP.NET


 
Reply With Quote
 
Evertjan.
Guest
Posts: n/a
 
      12-16-2008
Mangler wrote on 16 dec 2008 in microsoft.public.inetserver.asp.general:

> Because this is a return shipping label and the info they put in the
> fields needs to be in the label, the label is a pre made picture.


?????????????

[please always quote on usenet]

why not use a jpf ir tif?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
 
Reply With Quote
 
Mike Brind
Guest
Posts: n/a
 
      12-16-2008

"Evertjan." <> wrote in message
news:Xns9B765DC597E82eejj99@194.109.133.242...
> Mangler wrote on 16 dec 2008 in microsoft.public.inetserver.asp.general:
>
>> Because this is a return shipping label and the info they put in the
>> fields needs to be in the label, the label is a pre made picture.

>
> ?????????????
>
> [please always quote on usenet]
>
> why not use a jpf ir tif?
>


The text on the label/image would still need to be generated dynamically.
As you know, there are components that do that too, but the printing result
from a PDF is likely to be much better without additonal fiddling about with
image resolutions etc

--
Mike Brind
MVP - ASP/ASP.NET


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Postscript to PDF with pdf-tools, pdf-writer, or other Sean Nakasone Ruby 1 04-14-2008 09:13 PM
PDF::Writer, create pdf and insert in other pdf file. Ricardo Pog Ruby 1 03-26-2008 08:24 PM
Print content of an ASP page to acrobat PDF destiller and send PDF to browser Martin ASP General 1 10-05-2005 09:57 PM
Redirect from asp page to a PDF causes the PDF to be downloaded as the ASP name Steve Mauldin ASP General 1 07-28-2005 05:02 PM
Re: Open linked PDF-Files from a PDF-File Carl Prothman [MVP] ASP .Net 4 08-12-2003 09:26 AM



Advertisments
 



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