public ActionResult Index() { // ASP.NET MVC makes it easy to pass data from a controller to a view, // using the ViewData dictionary or, in the case of strongly-typed views, // passing the model class directly to it ViewData["Message"] = "Hello from this On-Premise MVC App"; return View(); }