I am using Mvc 5 razor,and have used ckeditor to save data in database but when i am retrieving data on the view it is coming with all the html tags pls helpme how to display it in normal text form on the view
<div class="panel panel-default">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseThree" id="Inclusions">
<div class="panel-heading">
<h4 class="panel-title"> INCLUSIONS </h4>
</div>
</a>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
@Html.Raw(Html.DisplayFor(Model => Model.Itinerarydetail.Inclusions));
</div>
</div>
</div>