您可以只使用ContentResult
返回一个纯字符串:
public ActionResult Temp() {
return Content("Hi there!");
}
默认情况下, ContentResult
text/plain
作为其contentType 。这是可重载的,因此您还可以执行以下操作:
return Content("<xml>This is poorly formatted xml.</xml>", "text/xml");
如果您知道这是该方法将返回的唯一内容,则也可以仅返回字符串。例如:
public string MyActionName() {
return "Hi there!";
}
public ActionResult GetAjaxValue()
{
return Content("string value");
}