标签:
和开发高啊噶客户噶快爱国黑客帝国哈更好
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MyWebSite.Controllers { public class HomeController : Controller { public ActionResult Index() { return View(); } public ActionResult KindEditor() { return View(); } public ActionResult About() { ViewBag.Message = "Your application description page."; return View(); } public ActionResult Contact() { ViewBag.Message = "Your contact page."; return View(); } } }
标签:
原文地址:http://my.oschina.net/kavensu/blog/419343