• 大小: 1.41M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: MVC  三层架构  c  登录  架构  

资源简介

实现了 登陆 以及增删改查功能,非常入门级,直接附加test数据库即可,数据库在web/app_data文件夹下

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using SystemModel;
using System.Data.SqlClient;
using SystemDAL;
using System.Data;

namespace SystemBLL
{
    public class BLL
    {
        public BLL()
        {

        }
        /// 
        /// 插入方法
        /// 

        /// 
        /// 
        public static int InsertData(LoginModel M)
        {
            string sql = “INSERT INTO Login VALUES(@LoginName@LoginPassword)“;
            try
            {
                SqlParameter[] sqlParameter =
            {
                new SqlParameter(“@LoginName“M.LoginName)
                new SqlParameter(“@LoginPassword“M.LoginPassword)
               
            };
     

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-05 00:42  .vs\
     目录           0  2018-07-05 00:42  .vs\MVC\
     目录           0  2018-07-05 00:43  .vs\MVC\v15\
     文件       55808  2018-07-05 01:02  .vs\MVC\v15\.suo
     目录           0  2018-07-05 00:42  .vs\MVC\v15\Server\
     目录           0  2018-07-05 00:42  .vs\MVC\v15\Server\sqlite3\
     文件           0  2018-07-05 00:42  .vs\MVC\v15\Server\sqlite3\db.lock
     文件        4096  2018-07-05 00:42  .vs\MVC\v15\Server\sqlite3\storage.ide
     文件       32768  2018-07-05 00:42  .vs\MVC\v15\Server\sqlite3\storage.ide-shm
     文件     1227792  2018-07-05 00:59  .vs\MVC\v15\Server\sqlite3\storage.ide-wal
     目录           0  2018-07-05 00:42  .vs\config\
     文件       85604  2018-07-05 00:42  .vs\config\applicationhost.config
     文件        6028  2018-07-05 00:49  MVC.sln
     目录           0  2009-05-08 15:05  SystemBLL\
     文件        4524  2009-05-05 11:25  SystemBLL\BLL.cs
     目录           0  2009-05-08 15:05  SystemBLL\Properties\
     文件        1337  2009-04-30 13:24  SystemBLL\Properties\AssemblyInfo.cs
     文件        2588  2018-07-05 00:42  SystemBLL\SystemBLL.csproj
     目录           0  2018-07-05 00:42  SystemBLL\bin\
     目录           0  2009-05-08 15:05  SystemBLL\bin\Debug\
     文件        6144  2018-07-05 00:49  SystemBLL\bin\Debug\SystemBLL.dll
     文件       15872  2018-07-05 00:49  SystemBLL\bin\Debug\SystemBLL.pdb
     文件        5632  2018-07-05 00:49  SystemBLL\bin\Debug\SystemDAL.dll
     文件       13824  2018-07-05 00:49  SystemBLL\bin\Debug\SystemDAL.pdb
     文件        4608  2018-07-05 00:43  SystemBLL\bin\Debug\SystemModel.dll
     文件       13824  2018-07-05 00:43  SystemBLL\bin\Debug\SystemModel.pdb
     目录           0  2018-07-05 01:02  SystemBLL\bin\Release\
     目录           0  2009-05-08 15:05  SystemBLL\obj\
     目录           0  2018-07-05 00:49  SystemBLL\obj\Debug\
     文件        6137  2018-07-05 00:42  SystemBLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2009-05-08 15:05  SystemBLL\obj\Debug\Refactor\
............此处省略76个文件信息

评论

共有 条评论