enter code hereHow to see Bold , italic etc text?I have this in my create view:
@(Html.Kendo().EditorFor(model => model.Content))
In my cotroller this :
Content = HttpUtility.HtmlDecode(opininonmodel.Content)
,i try with Server.HtmlDecode , but still see html tags not what they make.
In index View where result should show I have this :
@foreach (var item in Model)
{
@Html.DisplayFor(modelItem => item.Content)
}
@(Html.Kendo().EditorFor(model => model.Content))
In my cotroller this :
Content = HttpUtility.HtmlDecode(opininonmodel.Content)
,i try with Server.HtmlDecode , but still see html tags not what they make.
In index View where result should show I have this :
@foreach (var item in Model)
{
@Html.DisplayFor(modelItem => item.Content)
}