Files
ClientServerProject/软件系统浏览器模版/Controllers/HomeController.cs

32 lines
598 B
C#
Raw Normal View History

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