1
0
mirror of https://github.com/rudollee/LearningMVC.git synced 2025-06-07 07:56:14 +00:00
LearningMVC/Views/Controllers/HomeController.cs
2017-04-13 20:56:04 +09:00

23 lines
438 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Views.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "Hello, World";
ViewBag.Time = DateTime.Now.ToShortTimeString();
return View("DebugData");
}
public ActionResult List()
{
return View();
}
}
}