4
Answers

Generate digital signature in PDF and verify the certificate

Hi friends! How to generate digital signature in PDF and verify the certificate using private and public key authentication,I am tried 3 days two many ways but not clear explanation,if you know share me. Hopefully SavadaMuthu Saravanan
Answers (4)
0
Juan Hines

Juan Hines

NA 14 0 9y
What do you mean by "print to pdf file"?
In case you do than check out this article about creating a new pdf file in C#. The article shows how to use an API from this .net's component for word documents and what you can do with its help is that you could first retrieve your table controls html content with RenderControl method and after that you can just directly convert that html content into a pdf format with C#.
0
Raja T

Raja T

NA 7.4k 6k 9y
Hi Sameer,
Please find the attached file .This is use ful for you.
Please check it. For this only send div id/class name only. for example in like below
<div id="ele2" class="b">
<h3>Element 2</h3>
<p>
Some other random text.
</p>
<button class="print-link no-print">
Print this ($.print("#ele2")) and skip the button
</button>
</div>
In function like
$(function() {
$("#ele2").find('.print-link').on('click', function() {
//Print ele2 with default options
$.print("#ele2");
});
Now you can print the document like pdf
 
Thanks