473,473 Members | 2,031 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Create PDF files in ASP.net

Hi,

I was wondering if there is any standard way to create PDF files in
ASP.net. I'm currently using a regular ASP application to generate PDF
files, but I'm in the process of converting the website to ASP.net.

Thanks

Frankwin

Mar 6 '07 #1
9 1221
Hi

did you try

http://itextsharp.sourceforge.net/

Adlai

-------------------------------------
If my answer helped you please press "Yes" bellow

אם תשובה זו עזרה לך, א*א הצבע "כן"

Adlai Maschiach
http://blogs.microsoft.co.il/blogs/adlaim/
"Frankwin" wrote:
Hi,

I was wondering if there is any standard way to create PDF files in
ASP.net. I'm currently using a regular ASP application to generate PDF
files, but I'm in the process of converting the website to ASP.net.

Thanks

Frankwin

Mar 6 '07 #2
Not yet. Will look at it now though.

Thanks

Frankwin

On Mar 6, 7:56*pm, Adlai Maschiach
<AdlaiMaschi...@discussions.microsoft.comwrote:
Hi

did you try

http://itextsharp.sourceforge.net/

Adlai

-------------------------------------
If my answer helped you please press "Yes" bellow

אם תשובה זו עזרה לך, א*א הצבע "כן"

Adlai Maschiachhttp://blogs.microsoft.co.il/blogs/adlaim/

"Frankwin" wrote:
Hi,
I was wondering if there is any standard way to create PDF files in
ASP.net. I'm currently using a regular ASP application to generate PDF
files, but I'm in the process of converting the website to ASP.net.
Thanks
Frankwin- Hide quoted text -

- Show quoted text -

Mar 6 '07 #3
"Frankwin" <fr*****************@gmail.comwrote in message
news:11**********************@c51g2000cwc.googlegr oups.com...
I was wondering if there is any standard way to create PDF files in
ASP.net.
No standard way...

I use this: http://www.siberix.com/
Mar 6 '07 #4

"Frankwin" <fr*****************@gmail.comwrote in message
news:11**********************@c51g2000cwc.googlegr oups.com...
Hi,

I was wondering if there is any standard way to create PDF files in
ASP.net. I'm currently using a regular ASP application to generate PDF
files, but I'm in the process of converting the website to ASP.net.
I am still using an ASP (COM) component to do this in ASP.NET. ASPPdf. I
know it quite well from the classic ASP days, and haven't had time to
properly look at iTextSharp yet.

HTH

Mike
Mar 6 '07 #5
On Mar 6, 10:54 pm, "Mike" <some...@dot.netwrote:
"Frankwin" <frankwin.hooglan...@gmail.comwrote in message

news:11**********************@c51g2000cwc.googlegr oups.com...
Hi,
I was wondering if there is any standard way to create PDF files in
ASP.net. I'm currently using a regular ASP application to generate PDF
files, but I'm in the process of converting the website to ASP.net.

I am still using an ASP (COM) component to do this in ASP.NET. ASPPdf. I
know it quite well from the classic ASP days, and haven't had time to
properly look at iTextSharp yet.

HTH

Mike
Yeah I'm currently using ASPPdf too, but it requires installation of a
DLL and my new hosting provider doesn't allow that, so that's why I
was wondering if there was a way to do it in .net without having to
install stuff.

Mar 7 '07 #6
many webhosts accept/use the pdf component from websupergoo.

developer license is free for a link back

"Frankwin" <fr*****************@gmail.comwrote in message news:11**********************@t69g2000cwt.googlegr oups.com...
On Mar 6, 10:54 pm, "Mike" <some...@dot.netwrote:
>"Frankwin" <frankwin.hooglan...@gmail.comwrote in message

news:11**********************@c51g2000cwc.googleg roups.com...
Hi,
I was wondering if there is any standard way to create PDF files in
ASP.net. I'm currently using a regular ASP application to generate PDF
files, but I'm in the process of converting the website to ASP.net.

I am still using an ASP (COM) component to do this in ASP.NET. ASPPdf. I
know it quite well from the classic ASP days, and haven't had time to
properly look at iTextSharp yet.

HTH

Mike

Yeah I'm currently using ASPPdf too, but it requires installation of a
DLL and my new hosting provider doesn't allow that, so that's why I
was wondering if there was a way to do it in .net without having to
install stuff.

Mar 7 '07 #7
"Frankwin" <fr*****************@gmail.comwrote in message
news:11**********************@t69g2000cwt.googlegr oups.com...
Yeah I'm currently using ASPPdf too, but it requires installation of a
DLL and my new hosting provider doesn't allow that, so that's why I
was wondering if there was a way to do it in .net without having to
install stuff.
http://www.siberix.com is a proper .NET assembly, so no installation
required - just drop it in your \bin folder and you're good to go...
Mar 7 '07 #8
dgk
On 7 Mar 2007 05:35:29 -0800, "Frankwin"
<fr*****************@gmail.comwrote:
>On Mar 6, 10:54 pm, "Mike" <some...@dot.netwrote:
>"Frankwin" <frankwin.hooglan...@gmail.comwrote in message

news:11**********************@c51g2000cwc.googleg roups.com...
Hi,
I was wondering if there is any standard way to create PDF files in
ASP.net. I'm currently using a regular ASP application to generate PDF
files, but I'm in the process of converting the website to ASP.net.

I am still using an ASP (COM) component to do this in ASP.NET. ASPPdf. I
know it quite well from the classic ASP days, and haven't had time to
properly look at iTextSharp yet.

HTH

Mike

Yeah I'm currently using ASPPdf too, but it requires installation of a
DLL and my new hosting provider doesn't allow that, so that's why I
was wondering if there was a way to do it in .net without having to
install stuff.
I'm confused. A hosting site doesn't allow you to install a dll?
Aren't third party controls hosted in dlls? The app itself is in a
dll.

I use iTextSharp for this, and the dll just sits in the bin directory
along with the other dlls.

I suppose if you need to install a dll in the GAC or windows directory
then it would be another story.
Mar 8 '07 #9
"dgk" <dg*@somewhere.comwrote in message
news:h2********************************@4ax.com...
I'm confused. A hosting site doesn't allow you to install a dll?
Aren't third party controls hosted in dlls? The app itself is in a
dll.
Indeed.
I use iTextSharp for this, and the dll just sits in the bin directory
along with the other dlls.
Quite so - same with Siberix...
I suppose if you need to install a dll in the GAC or windows directory
then it would be another story.
In my experience, most 3rd-party add-ins do not *need* to be installed in
the GAC - software authors realise that the vast majority of ISPs either do
not permit this or at least charge for it, so they design their DLLs
accordingly so as not to risk losing lots of sales...
Mar 8 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: Lonnie Princehouse | last post by:
In short: Is there any way to run Python WITHOUT trying to create .pyc files (or ..pyo) or to have Python not attempt to import the .pyc files it finds? Reason: We have a site-specific...
2
by: sudheervemana | last post by:
Dear all, In my main directory there are some source files and i have another directory which includes several folders,each contains the make files.Now i want to debug my source code in either...
13
by: Daniel Walzenbach | last post by:
Hi, Imagine the following situation: I have an asp.net application which allows uploading files to a SQL Server 2000 database (Files are stored as type "images"). As a next step I would like to...
9
by: Bob Achgill | last post by:
I would like to use the timestamp on files to manage the currency of support files for my VB windows application. In this case I would only put the timestamp of the file in the management database...
6
by: Rich | last post by:
Hello, I want to simulate the dynamic thumbnail display of Windows Explorer (winxp) on a form or pannel container. If I place a picture box on my container form/pannel and dimension it to the...
37
by: Steven Bethard | last post by:
The PEP below should be mostly self explanatory. I'll try to keep the most updated versions available at: http://ucsu.colorado.edu/~bethard/py/pep_create_statement.txt...
5
by: Michael Sperlle | last post by:
Is it possible? Bestcrypt can supposedly be set up on linux, but it seems to need changes to the kernel before it can be installed, and I have no intention of going through whatever hell that would...
23
by: sandy | last post by:
I need (okay, I want) to make a dynamic array of my class 'Directory', within my class Directory (Can you already smell disaster?) Each Directory can have subdirectories so I thought to put these...
2
by: sebastien.abeille | last post by:
Hello, I would like to create a minimalist file browser using pyGTK. Having read lot of tutorials, it seems to me that that in my case, the best solution is to have a gtk.TreeStore containing...
15
by: lxyone | last post by:
Using a flat file containing table names, fields, values whats the best way of creating html pages? I want control over the html pages ie 1. layout 2. what data to show 3. what controls to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.