I've a Control/View that render a HTML template Into the View with:
@(MvcHtmlString.Create(@Model.TemplateContent))
This works fine, but I would also like to make a Merge, I mean:
The Model.TemplateContent contains, for example, a model item like a:
Model.TemplateContent = "<p>The Name of the Customer is @Model.CustomerName</p>";
return View(model);
Is possible when View render Model.TemplateContent, render the model items into html template too?