I have TinyMCE editor in my custom site CMS and store HTML content in SQL DB.
Then I render it in cshtml RazorView:
@MvcHtmlString.Create(Model.Content)
How can I include PartialView inside html content by TinyMCE?
Something like:
...content html...
<div>[[ViewName]]</div>
...content html...
A partial view can be included in an HTML page by using the following
<% Html.RenderPartial("~/Views/Folder/ViewName.ascx");%>