Are you looking to render a string in ASP.NET Razor View without encoding ? If yes , you could use the Html.Raw helper methods to achieve this.
How to render without encoding in ASP.NET MVC Razor View ?
Below is a sample code snippet to demonstrate the usage of Html.Raw in ASP.NET MVC.
@Html.Raw("Welcome to AbundantCode.com")
1 Comment