0

最初的:

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 "..." 是模型生成和完成的代码。

4

1 回答 1

0

如果要返回 HTML 字符串,可以使用:

string html = "<div>Hello, this is div</div>";
return Content(html, "text/xml");
于 2013-08-07T08:25:47.543 回答