Convert web page to PDF in asp.net

  • Thread starter Thread starter Techeek
  • Start date Start date
T

Techeek

Anybody know how to converts web page to PDF file using asp.net 1.1
But I don’t want using third party components.
 
Anybody know how to converts web page to PDF file using asp.net 1.1
But I don’t want using third party components.

As there's nothing built into the Framework for this, you don't have much
choice...

I use this: http://www.siberix.com/

There are many others...
 
Hello Techeek,

you can render page to string and then use XSL FO (formatting objects) to
create PDF
but it's a bit time consuming way

I'd rely on the opensource 3rd party components for this

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


T> Anybody know how to converts web page to PDF file using asp.net 1.1
T> But I don’t want using third party components.
T>
 
Back
Top