- Home
- Forum
- ASP.NET Web Forms (Classic)
- PDF from url
PDF from url
Hello,
I have to create a PDF from url and i am using the code from help document
here is the code:
//Create a new PDF document. PdfDocument document = new PdfDocument(); //Creates a new page and adds it as the last page of the document. PdfPage page = document.Pages.Add(); //Create a new pdf textweblink annotation PdfTextWebLink webLinkAnnotation = new PdfTextWebLink();webLinkAnnotation.Url =
"http://www.yahoo.com";webLinkAnnotation.DrawTextWebLink(page,
new PointF(50, 40)); //Add this annotation to a new page.page.Annotations.Add(webLinkAnnotation);
//Save the document to disk.document.Save(
"TextWebLink(.pdf");I am getting an error on line
page.Annotations.Add(webLinkAnnotation);
and the error is "The best overloaded method match for 'Syncfusion.Pdf.Interactive.PdfAnnotationCollection.Add(Syncfusion.Pdf.Interactive.PdfAnnotation)' has some invalid arguments"
Can you please help me resolve this issue?
thanks
PDF Text web Link_2708d032.zip
Thanks,
One more question
document.save() option save the pdf file on the same folder in which i have my c# file, I want to open the save dialogue box and allow user to select the path on his machine to save the pdf
Is it possible in syncfusion?
Saving the PDF_b361cabb.zip
- 3 Replies
- 2 Participants
-
PM Prakash Makhija
- Apr 15, 2013 12:50 PM UTC
- Apr 24, 2013 04:57 AM UTC