AspNet MVC4 教学-25:Asp.Net MVC4 强弱类型View等技术高速对照Demo
2021-07-15 20:07
标签:collect arp content 文件 type turn end sdn models A.创建Basic类型项目. B.Model文件夹下创建4个类文件: Teacher.cs: Index.cshtml: E:效果图: AspNet MVC4 教学-25:Asp.Net MVC4 强弱类型View等技术高速对照Demo 标签:collect arp content 文件 type turn end sdn models 原文地址:http://www.cnblogs.com/jzdwajue/p/7072428.htmlusing System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MvcViewModelTest.Models
{
public class Teacher
{
public string Name
{
get
{
return "马老师";
}
}
public string Remark
{
get
{
return "计算机教师";
}
}
}
}
Student.cs:using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MvcViewModelTest.Models
{
public class Student
{
public string Name
{
get
{
return "张三";
}
}
public string Remark
{
get
{
return "电商学生";
}
}
}
AllPersons.cs:using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MvcViewModelTest.Models
{
public class AllPersons
{
public Teacher tea=new Teacher();
public Student stu=new Student();
}
}
Other.cs:using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MvcViewModelTest.Models
{
public class Other
{
public string Name
{
get
{
return "李四";
}
}
public string Remark
{
get
{
return "后勤人员";
}
}
}
}
}
C.创建HomeController.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MvcViewModelTest.Models;
namespace MvcViewModelTest.Controllers
{
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
ViewBag.Other = new Other();
return View(new AllPersons());
}
}
}
D.View/Home/创建1个文件:@using MvcViewModelTest.Models
@model AllPersons
@{
ViewBag.Title = "Index";
}
@{
var ot = ViewBag.Other as Other;
}
Index
上一篇:jQuery-筛选
文章标题:AspNet MVC4 教学-25:Asp.Net MVC4 强弱类型View等技术高速对照Demo
文章链接:http://soscw.com/index.php/essay/105730.html