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

2021-07-15 20:07

阅读:385

标签:collect   arp   content   文件   type   turn   end   sdn   models   

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";
    
}

Index

Teacher-利用Model编辑时有智能感应

@Model.tea.Name

@Model.tea.Remark

Teacher-利用DisplayFor编辑时有智能感应

@Html.DisplayFor(m => m.tea.Name)

@Html.DisplayFor(m => m.tea.Remark)

Teacher-TextBox的4种显示技术
    

HTML:

TextBox: @Html.TextBox("tea.Name", Model.tea.Name)

TextBoxFor: @Html.TextBoxFor(m => m.tea.Name)

EditorFor: @Html.EditorFor(m => m.tea.Name)

Student-利用Model编辑时有智能感应

@Model.stu.Name

@Model.stu.Remark

Student-利用DisplayFor编辑时有智能感应

@Html.DisplayFor(m => m.stu.Name)

@Html.DisplayFor(m => m.stu.Remark)

Other-编辑时没有智能感应

@ViewBag.Other.Name

@ViewBag.Other.Remark

@{ var ot = ViewBag.Other as Other; }
Other-编辑时有智能感应

@ot.Name

@ot.Remark

E:效果图:

技术分享


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

标签:collect   arp   content   文件   type   turn   end   sdn   models   

原文地址:http://www.cnblogs.com/jzdwajue/p/7072428.html


评论


亲,登录后才可以留言!