I am using a CKEditor on my MVC project. I'm saving HTML into the DB. WHen I read it and display it on screen, what I get is
<p> <a href="http://www.cnh.com">www.cnh.com</a></p> <p> &nbsp;</p>
I use Html.DisplayFor.
<td>
@Html.DisplayFor(modelItem => item.SampleCollectionInstructions)
</td>
How can I make it display the links properly and one per line??