• 大小: 8.45MB
    文件类型: .rar
    金币: 2
    下载: 0 次
    发布日期: 2024-01-27
  • 语言: C#
  • 标签: ASP.net  

资源简介

一、源码描述 这是超市商店会员刷卡消费综合管理系统,功能十分的强大,可以作为二次开发或者毕业设计 使用,感兴趣的可以下载看看啊。 二、功能介绍 该源码主要包括管理员后台和会员后台两大部分,具体功能如下: 网站前台模块: 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 < limit; 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个文件信息

评论

共有 条评论