摘要:
一、返回html形式的字符的两种方法: 1.使用MvcHtmlString() return new MvcHtmlString("Enter your password:"); 2.使用Html.Raw(str) @Html.Raw(@"Enter your password:") 上面的两个方法都会输出一个表单。如果直接使用下面的方法的话,返回一个乱码 return "Enter your p... 阅读全文
摘要:
一、模型绑定的概念 二、模型绑定好处 2.1没有模型绑定的环境 using System.Web.Mvc; using System.ComponentModel.DataAnnotations; public class Person { [Display(Name="编号")] public S 阅读全文