PDFsharp - moved to http://forum.pdfsharp.net/ Forum Index PDFsharp - moved to http://forum.pdfsharp.net/
Please visit the new PDFsharp forum at http://forum.pdfsharp.net/
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

How to convert a aspx page to pdf file

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    PDFsharp - moved to http://forum.pdfsharp.net/ Forum Index -> Support - moved to http://forum.pdfsharp.net/
View previous topic :: View next topic  
Author Message
pravin30



Joined: 06 Mar 2009
Posts: 1
Location: USA

PostPosted: Fri Mar 06, 2009 4:54 pm    Post subject: How to convert a aspx page to pdf file Reply with quote

Hi,

I want to convert a filled aspx form to pdf file. But when I try with the following code it creates the pdf file, but when i try to open it, it says that file is damaged or is not a supported file type.

here is my code -

PdfDocument pdfDoc = new PdfDocument(Server.MapPath("25.pdf"));
//25.pdf is the file I want to create

string sFilePath = Server .MapPath("Default.aspx");
//Default.aspx is the page I want to convert to pdf.
FileStream fs = new FileStream(sFilePath, FileMode.Open, FileAccess.Read);

byte[] fileData = new byte[fs.Length];

fs.Read(fileData, 0, System.Convert.ToInt32(fs.Length));
fs.Close();

PdfPage page1 = pdfDoc.AddPage();
MemoryStream ms = new MemoryStream(fileData);

pdfDoc.Save(ms, false);
Response.Clear();
Response.ContentType = "application/pdf";
Response.AddHeader("content-length", ms.Length.ToString());
Response.BinaryWrite(ms.ToArray());
Response.Flush();
ms.Close();
Response.End();
_________________
-cheers
Back to top
View user's profile Send private message Send e-mail
Thomas Hoevel



Joined: 16 Oct 2006
Posts: 387
Location: Cologne, Germany

PostPosted: Mon Mar 09, 2009 7:53 am    Post subject: Reply with quote

Hi!

It seems you can shorten your code to one MS DOS statement:
Code:
copy default.aspx 25.pdf


No conversion done, Adobe Reader doesn't support ASPX and reports "damaged file".

No such conversion implemented in PDFsharp nor planned for the near future.
_________________
Regards
Thomas Hoevel
PDFsharp Team
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    PDFsharp - moved to http://forum.pdfsharp.net/ Forum Index -> Support - moved to http://forum.pdfsharp.net/ All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © phpBB Group. Hosted by phpBB.BizHat.com


Start Your Own YouTube Clone

Free Web Hosting | Free Forum Hosting | FlashWebHost.com | Image Hosting | Photo Gallery | FreeMarriage.com

Powered by PhpBBweb.com, setup your forum now!
For Support, visit Forums.BizHat.com