直接在 View 显示字符串
如果你有一个 string,可以直接在 View 里输出:
string
Controller:
public ActionResult ShowString() { string content = "这是一个示例字符串"; return View((object)content); }
View (ShowString.cshtml):
ShowString.cshtml
@model string <p>@Model</p>
2. 读取 Stream 并显示
Stream