How to set title for HTML-document in C# and .NET
Creating and processing HTML documents is one of the core tasks of .NET development. When working with other documentation formats, it's often necessary to convert standards to HTML and set metadata such as the title ('title'). In this article, we'll look at how to set the title for an HTML document in C# and .NET using the popular component RTF TO HTML .NET from SautinSoft library.
The title ('title') is the core element that characterizes the HTML page experience. It is displayed in the browser tab and is also used to define the page's theme.
Using incorrect metadata will improve:
- Usability (user experience).
- SEO optimization (search engine visibility).
- Correct display in browsers and tools.
- How to set HTML version.
This code enables quick and automated reliable document transformations and structuring, which is relevant for reporting systems, content management systems, documentation generation, system archiving, etc.
Complete code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using SautinSoft;
namespace Example
{
class Program
{
static void Main(string[] args)
{
SetTitle();
}
/// <summary>
/// This sample shows how to set title for HTML-document.
/// </summary>
static void SetTitle()
{
// Get your free key here:
// https://sautinsoft.com/start-for-free/
// If you need more information about "RTF to HTML .Net"
// Email us at: support@sautinsoft.com.
string inpFile = @"..\..\..\example.docx";
string outFile = @"Result.html";
RtfToHtml r = new RtfToHtml();
// Set the document title
RtfToHtml.HtmlFixedSaveOptions opt = new RtfToHtml.HtmlFixedSaveOptions()
{
Title = "This document has a title :)"
};
try
{
r.Convert(inpFile, outFile, opt);
}
catch (Exception ex)
{
Console.WriteLine($"Conversion failed! {ex.Message}");
}
// Open the result.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFile) { UseShellExecute = true });
}
}
}Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Text
Imports System.IO
Imports SautinSoft
Namespace Example
Friend Class Program
Shared Sub Main(ByVal args() As String)
SetTitle()
End Sub
''' <summary>
''' This sample shows how to set title for HTML-document.
''' </summary>
Private Shared Sub SetTitle()
' Get your free key here:
' https://sautinsoft.com/start-for-free/
' If you need more information about "RTF to HTML .Net"
' Email us at: support@sautinsoft.com.
Dim inpFile As String = "..\..\..\example.docx"
Dim outFile As String = "Result.html"
Dim r As New RtfToHtml()
' Set the document title
Dim opt As new RtfToHtml.HtmlFixedSaveOptions() With {.Title = "This document has a title :)"}
Try
r.Convert(inpFile, outFile, opt)
Catch ex As Exception
Console.WriteLine($"Conversion failed! {ex.Message}")
End Try
' Open the result.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFile) With {.UseShellExecute = True})
End Sub
End Class
End Namespace
If you need a new code example or have a question: email us at support@sautinsoft.com or ask at Online Chat (right-bottom corner of this page) or use the Form below: