Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.

Aspose.HTML for .NET is a C# API for creating, loading, editing, rendering, scraping, validating, and converting web documents in .NET applications. Use it when your application needs programmatic control over HTML DOM nodes, CSS, resources, network requests, accessibility checks, or output formats such as PDF, XPS, DOCX, PNG, JPG, TIFF, BMP, and GIF.
The example below shows a common Aspose.HTML for .NET workflow: load an HTML document, create PDF save options, and write a PDF file.
1using Aspose.Html;
2using Aspose.Html.Converters;
3using Aspose.Html.Saving;
4
5using var document = new HTMLDocument("document.html");
6var options = new PdfSaveOptions();
7
8Converter.ConvertHTML(document, options, "document.pdf");For more output formats and conversion settings, see the HTML conversion guides.
Aspose.HTML also provides free online HTML applications for conversion, merging, SEO analysis, code generation, URL tools, and web accessibility checks. Use the web apps for quick manual tasks, and use Aspose.HTML for .NET when you need the same HTML workflows automated in C# applications.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.