实例介绍
全套源码-某大型电子购物商城系统(C#实现)含数据库
【实例截图】
【核心代码】
电子购物商城系统(C实现)
└── 电子购物商城系统(C#实现)
├── database
│ ├── 使用还原方式创建数据库
│ │ └── WebShoppingDB2008.4.20.bak
│ ├── 使用附加方式创建数据库
│ │ ├── WebShoppingDB_Data.MDF
│ │ └── WeShoppingDB_Log.LDF
│ └── 数据库的脚本文件
│ └── WebShoppingDB.sql
└── WebShopping
├── Admin
│ ├── AdminDesktop.aspx
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── Information
│ │ ├── AddNews.aspx
│ │ ├── AddNews.aspx.cs
│ │ ├── EditNews.aspx
│ │ ├── EditNews.aspx.cs
│ │ ├── LeavewordInfo.aspx
│ │ ├── LeavewordInfo.aspx.cs
│ │ ├── leavewordManage.aspx
│ │ ├── leavewordManage.aspx.cs
│ │ ├── NewsInfo.aspx
│ │ ├── NewsInfo.aspx.cs
│ │ ├── NewsManage.aspx
│ │ ├── NewsManage.aspx.cs
│ │ ├── Notice.aspx
│ │ └── Notice.aspx.cs
│ ├── OperateTree.aspx
│ ├── OperateTree.aspx.cs
│ ├── Product
│ │ ├── AddCategory.aspx
│ │ ├── AddCategory.aspx.cs
│ │ ├── AddProduct.aspx
│ │ ├── AddProduct.aspx.cs
│ │ ├── Category.aspx
│ │ ├── Category.aspx.cs
│ │ ├── CommentInfo.aspx
│ │ ├── CommentInfo.aspx.cs
│ │ ├── CommentManage.aspx
│ │ ├── CommentManage.aspx.cs
│ │ ├── EditCategory.aspx
│ │ ├── EditCategory.aspx.cs
│ │ ├── EditProduct.aspx
│ │ ├── EditProduct.aspx.cs
│ │ ├── OrderManage.aspx
│ │ ├── OrderManage.aspx.cs
│ │ ├── ProductInfo.aspx
│ │ ├── ProductInfo.aspx.cs
│ │ ├── ProductLeft.aspx
│ │ ├── ProductLeft.aspx.cs
│ │ ├── ProductMain.aspx
│ │ ├── ProductMain.aspx.cs
│ │ ├── ProductManage.aspx
│ │ ├── ProductManage.aspx.cs
│ │ ├── ProductPicture.aspx
│ │ ├── ProductPicture.aspx.cs
│ │ ├── ShowPicture.aspx
│ │ ├── ShowPicture.aspx.cs
│ │ ├── ViewOrder.aspx
│ │ └── ViewOrder.aspx.cs
│ └── User
│ ├── AddRole.aspx
│ ├── AddRole.aspx.cs
│ ├── AddUser.aspx
│ ├── AddUser.aspx.cs
│ ├── EditRole.aspx
│ ├── EditRole.aspx.cs
│ ├── EditUser.aspx
│ ├── EditUser.aspx.cs
│ ├── MyInfo.aspx
│ ├── MyInfo.aspx.cs
│ ├── RoleManage.aspx
│ ├── RoleManage.aspx.cs
│ ├── UpdateUserPwd.aspx
│ ├── UpdateUserPwd.aspx.cs
│ ├── UserInfo.aspx
│ ├── UserInfo.aspx.cs
│ ├── UserManage.aspx
│ └── UserManage.aspx.cs
├── App_Code
│ ├── CategoryOperate.cs
│ ├── OperateTree.cs
│ ├── order.cd
│ ├── OrderOperate.cs
│ ├── WebShoppingDB.dbml
│ ├── WebShoppingDB.dbml.layout
│ ├── WebShoppingDB.designer.cs
│ └── WebShoppingSystem.cs
├── App_Themes
│ └── Default
│ ├── Images
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ ├── 8.jpg
│ │ ├── 9.gif
│ │ ├── add.gif
│ │ ├── add.PNG
│ │ ├── attch.gif
│ │ ├── authority.png
│ │ ├── badd.gif
│ │ ├── ball.jpg
│ │ ├── bcommit.gif
│ │ ├── bedit.gif
│ │ ├── bfirst.gif
│ │ ├── bg.jpg
│ │ ├── bgo.gif
│ │ ├── bnext.gif
│ │ ├── bom_r1_c1.jpg
│ │ ├── bom_r1_c35.jpg
│ │ ├── bom_r1_c37.jpg
│ │ ├── bprev.gif
│ │ ├── bprint.gif
│ │ ├── breturn.gif
│ │ ├── breview.gif
│ │ ├── bstore.gif
│ │ ├── btail.gif
│ │ ├── bupdate.gif
│ │ ├── cancel.gif
│ │ ├── c_annu.gif
│ │ ├── cfcother.PNG
│ │ ├── cfc.png
│ │ ├── comment.PNG
│ │ ├── content.gif
│ │ ├── delete.gif
│ │ ├── delete.png
│ │ ├── deletes.gif
│ │ ├── dn.gif
│ │ ├── down.gif
│ │ ├── down.png
│ │ ├── edit.gif
│ │ ├── edit.PNG
│ │ ├── ffwd.gif
│ │ ├── first.gif
│ │ ├── folder.gif
│ │ ├── frew.gif
│ │ ├── fwd.gif
│ │ ├── go.gif
│ │ ├── i_b_line1.jpg
│ │ ├── i_b_line2.jpg
│ │ ├── i_center.jpg
│ │ ├── i_denglu.jpg
│ │ ├── index1_03.jpg
│ │ ├── index1_04.jpg
│ │ ├── index1_08.jpg
│ │ ├── index1_09.jpg
│ │ ├── index1_15.jpg
│ │ ├── index1_17.jpg
│ │ ├── index_36.gif
│ │ ├── introduce.gif
│ │ ├── +.jpg
│ │ ├── -.jpg
│ │ ├── l_b_bg.jpg
│ │ ├── l_bg.jpg
│ │ ├── left_1_r3_c3.jpg
│ │ ├── left_1_r5_c2.jpg
│ │ ├── left_2_r1_c1.jpg
│ │ ├── left_2_r1_c5.jpg
│ │ ├── left_2_r1_c6.jpg
│ │ ├── left_annu.gif
│ │ ├── left.png
│ │ ├── l_left_line_b.jpg
│ │ ├── l_left_line_c.jpg
│ │ ├── l_left_line_t.jpg
│ │ ├── login.gif
│ │ ├── l_right_line_b.jpg
│ │ ├── l_r_jiao1.gif
│ │ ├── l_r_jiao2.gif
│ │ ├── l_r_jiao3.gif
│ │ ├── l_r_jiao4.gif
│ │ ├── l_r_tb1.gif
│ │ ├── lt.gif
│ │ ├── member.PNG
│ │ ├── more.jpg
│ │ ├── new.gif
│ │ ├── next.gif
│ │ ├── paa.GIF
│ │ ├── pagebg.jpg
│ │ ├── pic.GIF
│ │ ├── pnext.gif
│ │ ├── pprev.gif
│ │ ├── prev.gif
│ │ ├── print.gif
│ │ ├── reset.png
│ │ ├── rew.gif
│ │ ├── right_annu.gif
│ │ ├── right.png
│ │ ├── rt.gif
│ │ ├── search.jpg
│ │ ├── split.gif
│ │ ├── sub.png
│ │ ├── tail.gif
│ │ ├── Thumbs.db
│ │ ├── title_r1_c4.jpg
│ │ ├── title_r1_c5.jpg
│ │ ├── titletopbg.JPG
│ │ ├── titletop.GIF
│ │ ├── tm.gif
│ │ ├── top_lm_r1_c18.jpg
│ │ ├── top_lm_r2_c11.jpg
│ │ ├── top_lm_r2_c13.jpg
│ │ ├── top_lm_r2_c15.jpg
│ │ ├── top_lm_r2_c17.jpg
│ │ ├── top_lm_r2_c3.jpg
│ │ ├── top_lm_r2_c5.jpg
│ │ ├── top_lm_r2_c7.jpg
│ │ ├── top_lm_r2_c9.jpg
│ │ ├── tp_2.jpg
│ │ ├── unknown.GIF
│ │ ├── update.gif
│ │ ├── up.gif
│ │ ├── up.png
│ │ ├── url.gif
│ │ └── view.png
│ ├── Templates
│ │ ├── default.gif
│ │ └── jingdian.gif
│ ├── web.css
│ └── web.skin
├── Default2.aspx
├── Default2.aspx.cs
├── Default.aspx
├── Default.aspx.cs
├── Desktop
│ ├── AdvanceSearch.aspx
│ ├── AdvanceSearch.aspx.cs
│ ├── Cart.aspx
│ ├── Cart.aspx.cs
│ ├── Comment.aspx
│ ├── Comment.aspx.cs
│ ├── leaveword.aspx
│ ├── leaveword.aspx.cs
│ ├── Order.aspx
│ ├── Order.aspx.cs
│ ├── Register.aspx
│ ├── Register.aspx.cs
│ ├── Search.aspx
│ ├── Search.aspx.cs
│ ├── UserInfoSure.aspx
│ ├── UserInfoSure.aspx.cs
│ ├── UserLogin.aspx
│ ├── UserLogin.aspx.cs
│ ├── UserLogoff.aspx
│ ├── UserLogoff.aspx.cs
│ ├── ViewNotify.aspx
│ └── ViewNotify.aspx.cs
├── Global.asax
├── UserControls
│ ├── LoginUC.ascx
│ ├── LoginUC.ascx.cs
│ ├── NewsUC.ascx
│ ├── NewsUC.ascx.cs
│ ├── NotifyUC.ascx
│ ├── NotifyUC.ascx.cs
│ ├── PageUC.ascx
│ ├── PageUC.ascx.cs
│ ├── SearchUC.ascx
│ ├── SearchUC.ascx.cs
│ ├── TailerUC.ascx
│ ├── TailerUC.ascx.cs
│ ├── TitleUC.ascx
│ └── TitleUC.ascx.cs
└── web.config
17 directories, 252 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)