Live Chat Icon For mobile
Live Chat Icon

How do I get/render the raw HTML from Blazor components?

Platform: Blazor| Category: 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>";
}

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.