• 大小: 7.82MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-07
  • 语言: C#
  • 标签:

资源简介

完整的asp.net电子商务网站源码 包括电子商务网站所有基本功能 一、后台管理员系统要实现的功能:(一)商品的管理(如:产品的上下架等)(二)交易管理(如订单处理等):(三)信息管理:(产品的购买次数和浏览次数,企业介绍、新闻动态、产品展示等)(四)操作管理(如留言回复,投诉管理及一些文字说明公告的发布等)(五)会员管理(用户资料信息和积分等管理)(六)帐户管理(用户余额管理)(七)送货/配货/出货管理: 二、交易系统要实现的功能:(一)产品查询(二)购物车 三、用户系统:(一)注册/登录/游客(二)用户信息/密码的修改(三)商品的查询、购买(四)留言和评价(五)定单的处理(如:撤消/查询定单的状态 等)(六)个人帐户:(充值/提现等)(七)商品的缺货登记/收藏/推荐(八)积分管理 四、在线支付系统(结算中心):一、货到付款(深圳关内)二、网上银行转帐,三、支付宝支付

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
using Jiaen.Components;
using Jiaen.Components.IDAL;
using Jiaen.SQLServerDAL;

namespace Jiaen.BLL
{
    [DataobjectAttribute]
   public class Category
    {
       private static readonly ICategory categorys = DataAccess.CreateCategory();

       /// 
       /// 获取分类图书
       /// 

       /// 
       public static IList GetCategory(CategoryType categoryType int categoryID)
       {
           return categorys.GetCategory(categoryType categoryID);
       }

       /// 
       /// 获取同类分类
       /// 

       /// 
       public static IList GetSameCategory(int parentID)
       {
           return categorys.GetSameCategory(parentID);
       }

       /// 
       /// 新增分类
       /// 

       /// 
       public static void InsertCategory(CategoryInfo category)
       {
           categorys.InsertCategory(category);
       }

       /// 
       /// 更新分类
       /// 

       /// 
       public static int UpdateCategory(CategoryInfo category)
       {
           return categorys.UpdateCategory(category);
       }


       public static int DeleteCategory(int categoryId)
       {
           return categorys.DeleteCategory(categoryId);
       }

       /// 
       /// 获取特定分类
       /// 

       /// 
       public static CategoryInfo GetCategoryByID(int categoryID)
       {
           return categorys.GetCategoryByID(categoryID);
       }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1902  2007-06-20 14:37  BLL\51aspx源码必读.txt

    ..A.SHR         9  2007-01-19 19:26  BLL\bin\Debug\Desktop_.ini

     文件      36864  2007-01-25 13:16  BLL\bin\Debug\Jiaen.BLL.dll

     文件     103936  2007-01-25 13:16  BLL\bin\Debug\Jiaen.BLL.pdb

     文件      81920  2007-01-25 13:16  BLL\bin\Debug\Jiaen.Components.dll

     文件     255488  2007-01-25 13:16  BLL\bin\Debug\Jiaen.Components.pdb

     文件      77824  2007-01-25 13:16  BLL\bin\Debug\Jiaen.SQLServerDAL.dll

     文件     151040  2007-01-25 13:16  BLL\bin\Debug\Jiaen.SQLServerDAL.pdb

     目录          0  2007-05-16 17:06  BLL\bin\Debug

    ..A.SHR         9  2007-01-19 19:26  BLL\bin\Desktop_.ini

    ..A.SHR         9  2007-01-19 19:26  BLL\bin\Release\Desktop_.ini

     文件      32768  2007-01-23 14:20  BLL\bin\Release\Jiaen.BLL.dll

     文件      95744  2007-01-23 14:20  BLL\bin\Release\Jiaen.BLL.pdb

     文件      73728  2007-01-23 14:20  BLL\bin\Release\Jiaen.Components.dll

     文件     222720  2007-01-23 14:20  BLL\bin\Release\Jiaen.Components.pdb

     文件      77824  2007-01-23 14:20  BLL\bin\Release\Jiaen.SQLServerDAL.dll

     文件     136704  2007-01-23 14:20  BLL\bin\Release\Jiaen.SQLServerDAL.pdb

     目录          0  2007-05-16 17:06  BLL\bin\Release

     目录          0  2007-05-16 17:06  BLL\bin

     文件       3420  2007-01-25 13:16  BLL\BLL.csproj

     文件       4734  2007-01-20 12:33  BLL\book\Book.cs

     文件       1671  2006-10-26 13:00  BLL\book\BookCatena.cs

    ..A.SHR         9  2007-01-19 19:26  BLL\book\Desktop_.ini

     文件       1235  2007-01-23 14:16  BLL\book\FavBook.cs

     文件       1792  2006-12-13 11:07  BLL\book\Publish.cs

     文件       1731  2006-10-26 12:22  BLL\book\Review.cs

     目录          0  2007-05-16 17:06  BLL\book

     文件       1785  2006-11-21 14:47  BLL\Category.cs

    ..A.SHR         9  2007-01-19 19:26  BLL\Desktop_.ini

     文件       1746  2006-12-11 22:12  BLL\DownClass.cs

............此处省略2221个文件信息

评论

共有 条评论

相关资源