我在现有的 Webforms 站点之上构建 MVC。我想让所有请求都通过控制器,但在某些情况下,我希望控制器将职责传递给 webform 页面 - 如果可能的话,我希望它接收 webform 页面生成的 html,然后返回结果。
例如,像这样:
public ActionResult Index()
{
var html = GenerateHtmlFromWebForm("index.aspx",Request);
return html;
}
我不想做重定向——我特别想得到一个 web 表单页面来生成 html,收集那个 html,然后从我的 Controller 方法返回那个 html。
这可能吗?