AspNet MVC4 教学-25:Asp.Net MVC4 强弱类型View等技术快速对比Demo

A.创建Basic类型项目.

B.Model目录下创建4个类文件:

Teacher.cs:

using 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个文件:

Index.cshtml:

@using MvcViewModelTest.Models
@model AllPersons
@{
    ViewBag.Title = "Index";
    
}
<h2>
    Index</h2>
<fieldset>
    <legend>Teacher-利用Model编辑时有智能感应</legend>
    <h2>@Model.tea.Name</h2>
    <h2>@Model.tea.Remark</h2>
</fieldset>
<fieldset>
    <legend>Teacher-利用DisplayFor编辑时有智能感应</legend>
    <h2>@Html.DisplayFor(m => m.tea.Name)</h2>
    <h2>@Html.DisplayFor(m => m.tea.Remark)</h2>
</fieldset>
<fieldset>
    <legend>Teacher-TextBox的4种显示技术</legend>
 <h2>HTML: <input id="tea_Name" name="tea.Name" type="text" value="马老师" /></h2>
    <h2>TextBox: @Html.TextBox("tea.Name", Model.tea.Name)</h2>
    <h2>TextBoxFor: @Html.TextBoxFor(m => m.tea.Name)</h2>
    <h2>EditorFor: @Html.EditorFor(m => m.tea.Name)</h2>
</fieldset>
<fieldset>
    <legend>Student-利用Model编辑时有智能感应</legend>
    <h2>@Model.stu.Name</h2>
    <h2>@Model.stu.Remark</h2>
</fieldset>
<fieldset>
    <legend>Student-利用DisplayFor编辑时有智能感应</legend>
    <h2>@Html.DisplayFor(m => m.stu.Name)</h2>
    <h2>@Html.DisplayFor(m => m.stu.Remark)</h2>
</fieldset>
<fieldset>
    <legend>Other-编辑时没有智能感应</legend>
    <h2>@ViewBag.Other.Name</h2>
    <h2>@ViewBag.Other.Remark</h2>
</fieldset>
@{    
    var ot = ViewBag.Other as Other;    
}
<fieldset>
    <legend>Other-编辑时有智能感应</legend>
    <h2>@ot.Name</h2>
    <h2>@ot.Remark</h2>
</fieldset>
E:效果图:



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

gCodeTop 格码拓普 老师

您的鼓励.我的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值