2020年2月18日
摘要: 1、Model常用属性讲解 using System; using System.ComponentModel.DataAnnotations; namespace MVCStudy2.Models { public class Student { [Required(ErrorMessage = 阅读全文
posted @ 2020-02-18 17:03 Tanqurey 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1、剃须刀模板razor的使用 1)混编 循环语法 @model List<MVCStudy.Models.Student> @{ ViewBag.Title = "List"; } <h2>List</h2> <!--循环遍历数组内容 c#与HTML混编--> <ul> @foreach (var 阅读全文
posted @ 2020-02-18 12:11 Tanqurey 阅读(147) 评论(0) 推荐(0) 编辑