2012年5月10日

网上购物系统(Task009)——FormView显示商品详细信息

摘要: 源代码:13033480群共享一、在数据库表Item中添加字段Descn、SupplyTime、SupplyDate、SupplyArea。因为除Descn,其它几个字段内容都差不多,所以,设置一下默认值,以后添加,更新数据库内容时,会更方便。二、在数据集Model类库中添加类ItemDetails.cs。using System;namespace WestGarden.Model{ public class ItemDetails { private int itemid; private string categoryid; priv... 阅读全文

posted @ 2012-05-10 23:49 WestGarden 阅读(262) 评论(0) 推荐(0) 编辑

网上购物系统(Task008)——用户界面层公共函数集WebUtility

摘要: 源代码:13033480群共享频繁的数据库操作,需要一个公共的数据库操作函数集(DBUtility中的SQLHelper.cs);频繁的用户界面操作,也需要一个公共函数集WebUtility.cs。因为频繁,这个类及类中的函数,也做成了静态的。一、App_Code中添加类WebUtility.cs,并在类中添加函数GetCategoryName()using System;using System.Configuration;using System.Web;using System.Web.Caching;using WestGarden.DAL;namespace WestGarden.W 阅读全文

posted @ 2012-05-10 15:03 WestGarden 阅读(273) 评论(0) 推荐(0) 编辑

网上购物系统(Task007)——自定义DateList控件分页显示商品信息

摘要: 源代码:13033480群共享一、数据集Model添加商品信息类ItemInfo.cs。using System;namespace WestGarden.Model{ public class ItemInfo { private int itemid; private string categoryid; private string name; private decimal price; private string image; private string categoryname; ... 阅读全文

posted @ 2012-05-10 09:14 WestGarden 阅读(214) 评论(0) 推荐(0) 编辑

导航