資源簡介
一、源碼描述
這是超市商店會員刷卡消費綜合管理系統,功能十分的強大,可以作為二次開發或者畢業設計
使用,感興趣的可以下載看看啊。
二、功能介紹
該源碼主要包括管理員后臺和會員后臺兩大部分,具體功能如下:
網站前臺模塊:
1、會員管理:會員辦卡、會員密碼修改、增加積分、扣除積分、會員充值、會員退款、會員列表。
2、消費管理:銷售收銀、快速消費、現金退貨、會員退貨。
3、商品管理:類別管理、新增商品、商品設置、庫存管理、進價提成設置。
4、統計報表:充值明細報表、收入明細報表、消費明細報表、積分明細報表、出庫入庫報表、會員信息
報表、積分排行報表、利潤統計報表、商品銷售統計。
5、短信提醒:會員生日提醒、節日活動提醒、短信發送明細。
6、個人設置:修改密碼。
7、系統設置:參數設置、店鋪設置、會員卡設置、角色管理、用戶管理、系統日志。
網站會員后臺模塊
1、會員中心。
2、商品列表。
3、禮品中心。
4、充值記錄。
5、對換記錄。
6、充值記錄。
三、注意事項
1、后臺管理員用戶名密碼均是:51aspx,會員用戶名16801553,密碼123456。
2、開發環境為Visual Studio 2010,數據庫為SQL Server 2005,數據庫文件在DB_51aspx文件夾中,
使用.net 4.0開發。
3、默認數據庫連接字符串在webconfig配置文件中修改。
4、會員登陸頁面為User_Default.aspx。

代碼片段和文件信息
using?System;
using?System.Management;
using?System.Web;
using?System.Web.Security;
using?System.Web.UI;
public?partial?class?_Default?:?System.Web.UI.Page
{
????protected?void?Page_Load(object?sender?EventArgs?e)
????{
????????if?(!IsPostBack)
????????{
????????????//清除cookie
????????????HttpCookie?aCookie;
????????????string?cookieName;
????????????int?limit?=?Request.Cookies.Count;
????????????for?(int?i?=?0;?i?????????????{
????????????????cookieName?=?Request.Cookies[i].Name;
????????????????aCookie?=?new?HttpCookie(cookieName);
????????????????Response.Cookies.Add(aCookie);
????????????}
????????????Response.Cookies[“issoft“].Value?=?“f“;
????????????Response.Cookies[“issoft“].Expires?=?DateTime.Now.AddHours(24);
????????????if?(Request.Cookies[“username“]?!=?null)
????????????{
????????????????txtUserName.Value?=?Server.HtmlEncode(Request.Cookies[“username“].Value);
????????????}
????????}
????}
????//?登陸
????protected?void?btnLogin_Click(object?sender?ImageClickEventArgs?e)
????{
????????//獲取CPU序列號在MD5加密
????????//string?_cpuInfo?=?““;
????????//ManagementClass?cimobject?=?new?ManagementClass(“Win32_Processor“);
????????//ManagementobjectCollection?moc?=?cimobject.GetInstances();
????????//foreach?(Managementobject?mo?in?moc)
????????//{
????????//????_cpuInfo?=?mo.Properties[“ProcessorId“].Value.ToString();
????????//}
????????//string?HDInfo?=?System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(_cpuInfo?“MD5“);???????
????????//SysSetting?mysys?=?new?SysSetting();
????????//mysys.GetModel();
????????//if?(HDInfo?==?mysys.HDInfo)
????????//{
????????????//if?(HttpUtility.UrlDecode(HttpContext.Current.Request.Cookies[“issoft“].Value)?==?“t“)
????????????//{
????????????????string?UserName?=?txtUserName.Value.Trim();
????????????????string?Password?=?txtUserPassword.Value.Trim();????????????
????????????????//登錄驗證?
????????????????USER?myuser?=?new?USER();
????????????????myuser.UserName?=?UserName;
????????????????string?sqlGetUserID?=?“SELECT?UserID?FROM?[USER]?WHERE?UserName=‘“?+?UserName?+?“‘“;
????????????????int?userid?=?Convert.ToInt16(DbHelperSQL.GetSingle(sqlGetUserID));
????????????????myuser.GetModel(userid);
????????????????if?(myuser.PassWord?!=?null)
????????????????{
????????????????????//if?(myuser.IsLogin?==?0)
????????????????????//{
????????????????????????if?(myuser.PassWord.Trim()?==?Password)
????????????????????????{
????????????????????????????ROLE?myrole?=?new?ROLE();
????????????????????????????myrole.RoleID?=?myuser.RoleID;
????????????????????????????myrole.GetModel(myrole.RoleID);
????????????????????????????Response.Cookies[“roleid“].Value?=?myrole.RoleID.ToString();
????????????????????????????Response.Cookies[“roleid“].Expires?=?DateTime.Now.AddHours(24);
????????????????????????????Response.Cookies[“role“].Value?=?HttpUtility.UrlEncode(myrole.RoleName);
????????????????????????????Response.
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????4180??2014-10-10?17:31??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\AllyItem.cs
?????文件???????4394??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\Authority.cs
?????文件???????2173??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\BoxControl.cs
?????文件??????24399??2012-04-10?16:25??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\BuyList.cs
?????文件???????4814??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\CardValue.cs
?????文件???????5808??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\CardZK.cs
?????文件???????8724??2011-07-20?17:30??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\ChangeGiftList.cs
?????文件???????2574??2012-12-01?17:35??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\CLassWebService.cs
?????文件????????535??2012-12-01?16:41??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\ConfigHelper.cs
?????文件??????18224??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\DBHelper.cs
?????文件??????10317??2012-12-03?17:02??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\DepotList.cs
?????文件???????8214??2012-04-11?15:35??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\DepotListB.cs
?????文件???????1859??2011-07-11?20:12??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\Focus.cs
?????文件???????4343??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\GiftItem.cs
?????文件???????6279??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\InteList.cs
?????文件???????3707??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\LoginAnnal.cs
?????文件??????26119??2012-04-09?11:01??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\Member.cs
?????文件???????3396??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\MemberTimes.cs
?????文件???????5954??2011-07-28?15:40??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\MessageBox.cs
?????文件???????5049??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\MODULE.cs
?????文件???????4686??2011-07-11?20:55??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\MsgList.cs
?????文件???????9563??2012-04-08?10:45??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\PayList.cs
?????文件???????8391??2011-09-29?16:56??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\ReceiptList.cs
?????文件???????6366??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\ROLE.cs
?????文件???????6099??2012-11-16?10:26??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\SalesSta.cs
?????文件???????9125??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\SalesTemp.cs
?????文件???????1988??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\ShopSetting.cs
?????文件???????1144??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\SMS.cs
?????文件???????5970??2011-08-18?19:05??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\SysSetting.cs
?????文件???????3406??2011-08-08?22:46??ASP.net超市商店會員刷卡消費綜合管理系統源碼\AH超市商店會員合管理系統源碼\App_Code\TimesItem.cs
............此處省略874個文件信息
評論
共有 條評論