Click here to Skip to main content
15,901,205 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a web form that I would like to print with a signature page at the bottom. When the user enters the data in the textbox then click on the submit button, I would like to print out the form being submitted with a signature page for them to sign. Right now that is no signature page on the form. How can this be done? Here is the code I have just for printing the form but not a signature page with it.

C#
protected void ButtonPrint_Click(object sender, EventArgs e)
    {
      ButtonPrint.Attributes.Add("onclick", "window.print(); return false");
    }
Posted
Updated 2-Dec-13 2:40am
v2

1 solution

Try to print the form in PDF Format and add the signature image at the bottom of the PDF Document. Read this Article.
 
Share this answer
 
Comments
Computer Wiz99 2-Dec-13 8:08am    
Debopam Pal, Is that the only way of doing it?
Debopam Pal 2-Dec-13 9:55am    
I didn't told so...

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