Click here to Skip to main content
15,897,334 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Plz help me if any body knows for this.

How to convert from pdf document to word document with data in asp.net,c#?

1.in .net pdf convertion is available?if not Plz tell me any free third party tool?
Posted
Updated 2-Dec-12 20:37pm
v2

Use SautinSoft third party library

SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
f.OpenPdf(FileUpload1.FileBytes);

if (f.PageCount > 0)
{
//Let's whole PDF document to Word (RTF)
rtf = f.ToWord();
}

//show Word/rtf
if (rtf != "")
{
Response.Buffer = true;
Response.Clear();
Response.ContentType = "application/msword";
Response.AddHeader(Content-Disposition:","attachment; filename=Result.doc");
Response.Write(rtf);
Response.Flush();
Response.End();
}

and you can download it form here:
http://www.sautinsoft.com/products/pdf-focus/convert_pdf_to_word_rtf_text_asp_net.php
 
Share this answer
 
Comments
24983 10-Dec-12 6:28am    
thnaks a lot
 
Share this answer
 
Comments
24983 3-Dec-12 6:46am    
Thanks... But I am asking about convertion from pdf to word.
sachinkale20 3-Dec-12 15:40pm    
kk will search and post it to u soon

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900