0 votes
in C Sharp by

How to render raw html in Asp.net MVC view?

1 Answer

0 votes
by

You can use Html.Raw helper to render raw Html in Asp.net MVC

Syntax

@Html.Raw('<h1>Raw Example </h1>');
...