How do I get/render the raw HTML from Blazor components?
Nov 21, 2020
Blazor,
ASP .NET Core Blazor,
Blazor FAQ,
render raw html in blazor component,
4863 Views
This code will help you to understand how to get/render the raw HTML from Blazor components.
String values are normally converted in DOM text notes. To render encode string values as raw HTML you need to wrap the string value in a MarkupString. This will encode the given string value HTML/SVG and place it in the given location.
Refer to the following code sample.
@((MarkupString)RawString)
@code {
public string RawString = "<span style='color:red'>Blazor is awesome</span>";
}


