• 大小: 1.21MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-28
  • 语言: 其他
  • 标签: 三层架构  

资源简介

实现简单的js三层架构,基于web程序应用,实现简单的登陆增删盖查,附带数据库.rar

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;

namespace Helper
{
    public static class MD5
    {
        static MD5()
        {
        }
        public static string GetMd5Hash(string input)
        {
            string hashKey = “Aa1@#$.Klj+{>.45oP“;
            using (MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider())
            {
                string hashCode = BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(input))).Replace(“-“ ““) + BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(hashKey))).Replace(“-“ ““);
                return BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(hashCode))).Replace(“-“ ““);
            }
        }
        public static bool VerifyMd5Hash(string input string hash)
        {
            string hashOfInput = GetMd5Hash(input);
            StringComparer comparer = StringComparer.OrdinalIgnoreCase;
            return comparer.Compare(hashOfInput hash) == 0 ? true : false;
        }
    }
}

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

     文件    3145728  2015-06-12 10:10  069-申琪扬\OnlineShop.mdf

     文件    1048576  2015-06-12 10:10  069-申琪扬\OnlineShop_log.ldf

     文件       6144  2015-09-08 21:47  069-申琪扬\ShopBLL\bin\Debug\ShopBLL.dll

     文件      19968  2015-09-08 21:47  069-申琪扬\ShopBLL\bin\Debug\ShopBLL.pdb

     文件      11776  2015-09-08 21:47  069-申琪扬\ShopBLL\bin\Debug\ShopDAL.dll

     文件      30208  2015-09-08 21:47  069-申琪扬\ShopBLL\bin\Debug\ShopDAL.pdb

     文件       5632  2015-09-08 21:47  069-申琪扬\ShopBLL\bin\Debug\ShopModel.dll

     文件      19968  2015-09-08 21:47  069-申琪扬\ShopBLL\bin\Debug\ShopModel.pdb

     文件       1130  2015-06-10 08:33  069-申琪扬\ShopBLL\MD5.cs

     文件       5887  2015-09-08 21:47  069-申琪扬\ShopBLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       9719  2015-09-08 21:47  069-申琪扬\ShopBLL\obj\Debug\ResolveAssemblyReference.cache

     文件       5896  2015-09-08 21:47  069-申琪扬\ShopBLL\obj\Debug\ShopBLL.csproj.FileListAbsolute.txt

     文件       9510  2015-09-08 21:39  069-申琪扬\ShopBLL\obj\Debug\ShopBLL.csprojResolveAssemblyReference.cache

     文件       6144  2015-09-08 21:47  069-申琪扬\ShopBLL\obj\Debug\ShopBLL.dll

     文件      19968  2015-09-08 21:47  069-申琪扬\ShopBLL\obj\Debug\ShopBLL.pdb

     文件       1346  2015-05-08 14:28  069-申琪扬\ShopBLL\Properties\AssemblyInfo.cs

     文件       2572  2015-06-10 08:40  069-申琪扬\ShopBLL\ShopBLL.csproj

     文件       2868  2015-06-11 11:30  069-申琪扬\ShopBLL\usermanage.cs

     文件      11776  2015-09-08 21:47  069-申琪扬\ShopDAL\bin\Debug\ShopDAL.dll

     文件      30208  2015-09-08 21:47  069-申琪扬\ShopDAL\bin\Debug\ShopDAL.pdb

     文件       5632  2015-09-08 21:47  069-申琪扬\ShopDAL\bin\Debug\ShopModel.dll

     文件      19968  2015-09-08 21:47  069-申琪扬\ShopDAL\bin\Debug\ShopModel.pdb

     文件       5915  2015-09-08 21:47  069-申琪扬\ShopDAL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       3737  2015-09-08 21:47  069-申琪扬\ShopDAL\obj\Debug\ResolveAssemblyReference.cache

     文件       4640  2015-09-08 21:47  069-申琪扬\ShopDAL\obj\Debug\ShopDAL.csproj.FileListAbsolute.txt

     文件       5171  2015-09-08 21:39  069-申琪扬\ShopDAL\obj\Debug\ShopDAL.csprojResolveAssemblyReference.cache

     文件      11776  2015-09-08 21:47  069-申琪扬\ShopDAL\obj\Debug\ShopDAL.dll

     文件      30208  2015-09-08 21:47  069-申琪扬\ShopDAL\obj\Debug\ShopDAL.pdb

     文件       1346  2015-05-08 14:28  069-申琪扬\ShopDAL\Properties\AssemblyInfo.cs

     文件       2516  2015-06-11 11:30  069-申琪扬\ShopDAL\ShopDAL.csproj

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

评论

共有 条评论