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

真-MVC控制器AJAS

上一篇:windbg常用的查看命令


下一篇:改进Xamarin应用程序中的HTTP性能