2017-07-21 16:41:18 +08:00
|
|
|
|
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
|
|
|
|
|
2017-07-21 16:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|