您的位置:首页 > 编程语言 > ASP

Pro Aspnet MVC 4读书笔记(5) - Essential Tools for MVC

2014-01-22 14:29 405 查看
Listing 6-1. The Product Model Class

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

namespace EssentialTools.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}

}
}


View Code
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: