using System;
using System.ComponentModel.DataAnnotations;
namespace HelloWorldMvcApp
{
public class SampleViewModel
public string Answer { get; set; }
}
@model HelloWorldMvcApp.SampleViewModel
@{ Layout = null; }
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
@{
@:@Html.DisplayFor(m => m.Answer)
</body>
</html>
using System.Web.Mvc;
using System.Collections.Generic;
public class HomeController : Controller
[HttpGet]
public ActionResult Index()
return View(new SampleViewModel
Answer = "Test",
});