Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.