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();
}
}
}

posted @ 2020-07-09 20:27  jieModels  阅读(50)  评论(0)    收藏  举报