123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace EMISOnline.Web.Controllers
- {
- [Authorization]
- public class HomeController : Controller
- {
- public ActionResult Index()
- {
- return View();
- }
- public ActionResult About()
- {
- ViewBag.Message = "你的应用程序说明页。";
- return View();
- }
- public ActionResult Contact()
- {
- ViewBag.Message = "你的联系方式页。";
- return View();
- }
- public ActionResult Main()
- {
- return View();
- }
- }
- }
|