public ActionResult Default()
{
ViewBag.Message = "Hello,World!";
var template = "<h1>@ViewBag.Message</h1>";
//How to make the content of the following "View" = "template"
return View();
}
然后构建html结果为:
<h1>Hello,World!</h1>
请帮助我,谢谢!我知道 RazorEngine 可以解析 Razor 文件,但不能将字符串渲染到 View。