using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using 软件系统浏览器模版.Models.Account; namespace 软件系统浏览器模版.Controllers { public class HomeController : Controller { /// /// 网站的主界面 /// /// [AuthorizeUser] public ActionResult Index() { return View(); } /// /// 网站的关于界面 /// /// [AuthorizeUser] public ActionResult About() { return View(); } /// /// 网站的联系人界面 /// /// [AuthorizeUser] public ActionResult Contact() { ViewBag.Message = "Your contact page."; return View(); } /// /// 系统更新日志 /// /// [AuthorizeUser] public ActionResult UpdateLog() { return View(); } /// /// 版本号说明 /// /// [AuthorizeUser] public ActionResult VersionInformation() { return View(); } /// /// 一个错误的消息界面 /// /// /// public ActionResult ErrorPage(string message) { ViewBag.Message = message; return View("Error"); } //GET /// /// 获取意见反馈的界面 /// /// [AuthorizeUser] public ActionResult AdviceFeedback() { return View(); } } }