Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #27.9K
Ranked #3K
~8K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for uri3000

try http://www.htm2pdf.co.uk - they have an [API](http://www.htm2pdf.co.uk/html-to-pdf-api) for 14$ a month and you only need one or two lines of code...

Member Avatar for jmind123
0
541
Member Avatar for aerian

It's quite easy to do so with the HTML to PDF API of http://www.htm2pdf.co.uk/html-to-pdf-api You'd use the following code: string apiKey = "abcde12345"; string url = "http://www.google.com"; using (var client = new WebClient()) { client.QueryString.Add("apikey", apiKey); client.QueryString.Add("url", url); client.DownloadFile("http://api.htm2pdf.co.uk/urltopdf", @"c:\temp\mypdf.pdf"); }

Member Avatar for Bessemer
0
2K
Member Avatar for keeleyb

Yes - is it for example, because you .htaccess does not allow access to it or what?

Member Avatar for keeleyb
-1
233
Member Avatar for VickyMilza

You could try to use PDFTK or QPDF - they both support rights management. Note that only Adobe Reader or Professional really listen to this. An open source Reader might not respect these blocks...

Member Avatar for rubberman
0
204
Member Avatar for Vijaysurya

How about this? `(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$`

Member Avatar for masterjiraya
0
205
Member Avatar for 4fridi

shouldn't you first take query string apart into keywords and THEN save them? what exactly is the code you tried and your result? Please be more specific so people can help you....

Member Avatar for 4fridi
0
1K
Member Avatar for MikeOxley

You may consider just using an API like [this HTML to PDF API from htm2pdf.co.uk](http://www.htm2pdf.co.uk/html-to-pdf-api) and not worrying about layout or how to use...

Member Avatar for tkdchamp
0
237
Member Avatar for jacob21

You can also just add a link on the form to a webservice that converts forms with content to PDF, such as [pdfmyform](http://www.pdfmyform.com). In that way you don't have to think about the conversion tool you're going to use and how to move the data to that tool etc. Most …

Member Avatar for broj1
0
4K

The End.