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();
}