Not sure how if it is possible, but I have this in a class:
public string TextNotIncluded
{
get
{
return ("which is <u>not</u> included in the Quote");
}
}
The <u> and </u> are being displayed in my view, rather than the word not being underlined. I am not familiar with C#.
Can anyone provide a quick answer?
Thanks.
Edit:
I am just calling this in my view thusly: @MyClass.TextNotIncluded. Wrapping it with @Html.Raw is not efficient in my case because I have this sprinkled throughout dozens of views.