tags:

views:

24

answers:

1

Is there any way to convert current aspx page on button click in to PDF without using third party tool?

+4  A: 

There is nothing built in, so you have to use third party tools.

I have seen iTextSharp recommended here many times as a good PDF library, though I have not used it myself. It is free.

Here is a blog post about rendering HTML + CSS to a PDF with this library.

Oded