真-MVC控制器AJAS/// 添加/// 显示,查询,删除/// 修改

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace WeekMvc.Controllers
{
public class GoodController : Controller
{
/// <summary>
/// 添加
/// </summary>
/// <returns></returns>
public ActionResult Add()
{
return View();
}
/// <summary>
/// 显示,查询,删除
/// </summary>
/// <returns></returns>
public ActionResult Show()
{
return View();
}
/// <summary>
/// 修改
/// </summary>
/// <returns></returns>
public ActionResult Update()
{
return View();
}
}
}

posted @ 2020-06-26 19:42  G蠢蠢  阅读(115)  评论(0编辑  收藏  举报