Given the following Html.ActionLink:
@Html.ActionLink(Model.dsResults.Tables[0].Rows[i]["title"].ToString(), "ItemLinkClick",
new { itemListID = @Model.dsResults.Tables[0].Rows[i]["ItemListID"], itemPosNum = i+1 }, ...
Data from the model contains HTML in the header field. However, I cannot display values encoded in HTML. i.e. Underlined text is displayed with <u>....</u>around it.
I tried Html.Raw in the text part of ActionLink but did not go.
Any suggestions?
source
share