I have a HTML helper function that serves to return boilerplate code to my view.
My view calls on this helper function like so:
@PresenterHelper.RenderReport("ExportAutomaticEntries", "Payees", "AutomaticEntriesPartial")
My helper funtion is:
public static HtmlString RenderReport(string actionName,
string controllerName,
string partialView)
{
string usingBeginForm = "@using(Html.BeginForm(\""
+ actionName + "\"," + "\""
+ controllerName + "\","
+ "new { entity = Model.Entity.Id }))";
string boilerPlate = "{@Html.Partial(\"_ExportButtons\")\n"
+ "@Html.Partial(\"_ReportHeader\");\n"
+ "@Html.Partial(\"" + partialView + "\", Model)}";
return new HtmlString(usingBeginForm + boilerPlate);
}
However, when I run the page, instead of having the code render what I want - I get the following string:
@using(Html.BeginForm("ExportAutomaticEntries","Payees",new { entity = Model.Entity.Id })){
@Html.Partial("_ExportButtons")
@Html.Partial("_ReportHeader")
@Html.Partial("AutomaticEntriesPartial", Model)
}
Is there a way to have a helper function return Razor syntax and have it run the other helper functions from the returned syntax?