In my Asp.net View I want to transform a string to a html code knowing that the string is expressed as an html helper:
@Html.DisplayFor(modelItem => item.text_actualite)
for example
@Html.DisplayFor(modelItem => item.text_actualite) contain "i example /i"
I want to display example in italic format.
Any help please?