最初的:
public ActionViewResult Action_ASDA(Model model)
{
...
...
return PartialView("My_Model_View",model);
}
好的..现在我需要这个函数来返回 HTML 代码(相同的函数,但我需要作为字符串返回 HTML)
public string Action_ASDA(Model model)
{
...
...
// HTML RESPONSE
Response.Clear();
Action_ASDA(model).ExecuteResult(ControllerContext);
Action_ASDA(model).ExecuteResult(ControllerContext);
return Response.ToString().Replace("System.Web.HttpResponseWrapper", string.Empty);
}
其中 show "..." 是模型生成和完成的代码。