using System;
using System.ComponentModel.DataAnnotations;
namespace HelloWorldMvcApp
{
public class SampleViewModel
}
@model System.DateTime
<!DOCTYPE html>
<html lang="en">
<body>
@Model.ToString()
</body>
</html>
using System.Web.Mvc;
using System.Collections.Generic;
public class HomeController : Controller
[HttpGet]
public ActionResult Index()
return View(DateTime.Now);