摘要: Essential C# Features1、Using Automatically Implemented Properties 1 public class Product { 2 private string name; 3 4 public int ProductID { ... 阅读全文
posted @ 2013-09-01 21:51 褐色鸟群 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 1、controller中的每一个public method被称为action method,意味着你可以从web上通过URL来调用它,以此来执行一个action。2、当我们从action method返回ViewResult对象的时候,将指示MVC提供一个视图。可以调用无参数的View()来创建V... 阅读全文
posted @ 2013-09-01 09:42 褐色鸟群 阅读(277) 评论(0) 推荐(0) 编辑