摘要: 1.设计一个页面能够读取商品信息。(1)在Models文件夹中,新建一个类,名字为Product.cs。在其中存放描述商品的属性。public class Product{ public int Id {get;set;} public string Name {get;set;} public string Price {get;set;} public string Description {get; set;} public int Num { get; set; }} (2)新建一个文件夹,名字为DAL。在其中新建一个类,名字为ProductCo... 阅读全文
posted @ 2013-12-17 09:28 liesl 阅读(267) 评论(0) 推荐(0) 编辑