MVC控制器
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ZhouKaoA.MVC.Controllers
{
public class DefaultController : Controller
{
// GET: Default
public ActionResult Index()
{
return View();
}
public ActionResult DengL()
{
return View();
}
public ActionResult Order()
{
return View();
}
public ActionResult DelOrder()
{
return View();
}
}
}
浙公网安备 33010602011771号