Umbraco 9 - Strip HTML and Truncate text output

Umbraco 9 - Strip HTML and Truncate text/html output. 

The code below can be used for truncating/shortening text and striping out HTML tags in Umbraco 9 to display shorter text useful for landing pages.

Instructions: 

  1. Replace "bodyText" with the reference to the property you would like to truncate.

Code:

<p>@Html.StripHtml(@Html.Truncate(@item.Value("bodyText").ToString(), 85))</p>

Example output:






Comments

Popular posts from this blog

Umbraco - Reset the Admin Password via SQL Server

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco

Umbraco - C# - Redirect a Umbraco Page to an external web site.