I have tried all solution proposed to other, similar questions but none of them seems to work. In essence I am trying to display a table filled with data from collection of
Html.Raw
Wraps HTML markup in an HtmlString instance so that it is interpreted as HTML markup. For Example :
Controller
public actionresult Htmlraw() { viewbag.message = "Hey friends lets go" + "" + "for chillout"; return view(); }
output
@html.raw(viewbag.message);