Files
Web_CRICS_Server_VS2010_Prod/MvcApplication1/Controllers/HomeController.cs
2025-12-17 10:51:23 +08:00

25 lines
459 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcApplication1.Controllers
{
[HandleError]
public class HomeController : Controller
{
public ActionResult Index()
{
ViewData["Message"] = "欢迎使用 ASP.NET MVC!";
return View();
}
public ActionResult About()
{
return View();
}
}
}