views:

80

answers:

1

Hi everybody. I have an asp .net page like this:

http://farm4.static.flickr.com/3631/3690714302_c17b259863.jpg

My Table is Gridview and some Label, anybody can tell me how to create a button to convert my page to image or pdf file and save it to desktop.

Help me please T__T.

A: 

It can be done by code on the backend that renders the html into a memory Graphic object and then serves that resultant bitmap back, or by printing the page (on the server) through a PDF writer and then capturing the result.

Javascript, no.

Or google "online convert html pdf" and use one of those services.

cdm9002