摘要: 1.验证注解(Model) 2.生成表单 阅读全文
posted @ 2017-11-04 18:01 fight139 阅读(701) 评论(0) 推荐(0) 编辑
摘要: Object obj = new { name="admin",age=123 ,pwd="123" }; //遍历匿名对象 foreach (System.Reflection.PropertyInfo p in obj.GetType().GetProperties()) { Console.WriteLine("name:{0},value:{1}",p.Name,p.GetVal... 阅读全文
posted @ 2017-11-04 18:01 fight139 阅读(2508) 评论(0) 推荐(1) 编辑
摘要: 1.View方法 ActionResult解析:(抽象类)视图结果 子类: 阅读全文
posted @ 2017-11-04 11:37 fight139 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 一个项目可以按照功能划分区域,例如前台和后台 右击MVC项目->添加区域 生成一个Area文件夹,优先加载分区项目的路由 1.产生的错误:http://localhost:65530/home/Index “home”请求找到下列匹配的控制器:bookShopMVC2.Controllers.Hom 阅读全文
posted @ 2017-11-04 11:35 fight139 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 1.C#代码和HTML代码混合使用 2.引入命名空间 @using bookShopMVC2.Models; 3.视图类型的声明 @model Student (注意:没有分号) 4.转义 @ -> @@ 阅读全文
posted @ 2017-11-04 11:12 fight139 阅读(133) 评论(0) 推荐(0) 编辑