ibms-dome/Frontend - 複製/Controllers/HomeController.cs

30 lines
577 B
C#
Raw Permalink Normal View History

using System;
2022-10-14 16:08:54 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
2022-10-14 16:08:54 +08:00
namespace Frontend.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
2022-10-14 16:08:54 +08:00
{
return View();
}
public ActionResult About()
2022-10-14 16:08:54 +08:00
{
ViewBag.Message = "Your application description page.";
2022-10-14 16:08:54 +08:00
return View();
}
public ActionResult Contact()
2022-10-14 16:08:54 +08:00
{
ViewBag.Message = "Your contact page.";
return View();
2022-10-14 16:08:54 +08:00
}
}
}