//HelloController.cs using FirstMVC.Models; using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace FirstMVC.Controllers{ public class HelloController : Controller { // // GE…
一.Model层 using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Mvc_Demo.Models { public class Person { public int Age { get; set; } public string Name { get; set; } public string Sex { get; set; } } } 二.控制器层 u…