Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Return Razor partial view using JSON (ASP MVC 3)

In MVC 2 with the regular view engine i could return a ascx partial view as string through return Json()

But with the new Razor .cshtml views I can not figure out how to do this. I keep getting Type 'ASP.CustomerForm_cshtml' does not inherit from 'System.Web.UI.UserControl'.

The partial view inherits from System.Web.Mvc.WebViewPage<T> and another error pops up if I inherit from System.Web.UI.UserControl<T> as the first error says.

Any thoughts on how to fix this using ASP MVC 3 and Razor view engine?

This is my ControlToString function:

    private string ControlToString(string controlPath, object model)
    {
        ViewPage page = new ViewPage();
        ViewUserControl ctl = (ViewUserControl)page.LoadControl(controlPath);
        page.Controls.Add(ctl);
        page.ViewData.Model = model;
        page.ViewContext = new ViewContext();
        System.IO.StringWriter writer = new System.IO.StringWriter();
        System.Web.HttpContext.Current.Server.Execute(page, writer, false);
        string outputToReturn = writer.ToString();
        writer.Close();
        //return this.Json(outputToReturn.Trim());
        return outputToReturn.Trim();
    }
like image 264
Martin at Mennt Avatar asked Sep 12 '10 11:09

Martin at Mennt


1 Answers

This might help you as I've written it off the top of my head without testing it other than to validate it returns the rendered cshtml file.

I assumed this was a method in a Controller.

private string ControlToString(string controlPath, object model) {
    CshtmlView control = new CshtmlView(controlPath);

    HtmlTextWriter writer = new HtmlTextWriter(new System.IO.StringWriter());
    control.Render(new ViewContext(this.ControllerContext, control, this.ViewData, this.TempData, writer), writer);

    string value = ((StringWriter)writer.InnerWriter).ToString();

    return value;
}
like image 166
Buildstarted Avatar answered Oct 08 '22 15:10

Buildstarted