eSign HTML Formats in C#
Native and high performance HTML document electronic signature using server-side .NET APIs, without the use of any software like Microsoft or Open Office, Adobe PDF.
How to Digitally Sign HTML File Using C#
In order to electronically sign HTML file, we’ll use
API which is a feature-rich, powerful and easy to use digital signature API for C# platform. Open
package manager, search for Aspose.Words and install. You may also use the following command from the Package Manager Console.
Command
PM> Install-Package Aspose.Words
Steps for e-Signing HTML Files in C#
A basic document digital signature using .NET API can be done with just few lines of code. One can add electronic signature as drawing, text and images to multiple files. Moreover, eSigned documents can be saved as PDF, JPEG, HTML, OpenOffice and other formats.
- Load all the HTML files with full path.
- Set the style of text like font, font size, color etc.
- Set the Signature text.
- Save HTML file, You will get the document with signature inserted.
System Requirements
Our APIs are supported on all major platforms and Operating Systems. Before executing the code below, please make sure that you have the following prerequisites on your system.
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms
- Development environment like Microsoft Visual Studio
- Aspose.Words for .NET DLL referenced in your project - Install from NuGet using the Download button above
e-Sign HTML Files - C#
var doc = new Document("My File.html");
var builder = new DocumentBuilder(doc);
builder.MoveToDocumentEnd();
Color color = Color.Black;
var font = builder.Font;
font.Size = 16;
font.Bold = true;
font.Color = color;
font.Name = "Arial";
var paragraph = builder.ParagraphFormat;
paragraph.Alignment = ParagraphAlignment.Right;
builder.Writeln("Signature Text");
doc.UpdatePageLayout();
doc.Save("Saved File.html", Aspose.Words.SaveFormat.html);
Online HTML eSignature Live Demos
Other Supported Files for Electronic Signatures
Using C#, One can also digitally sign many other formats including.