commit de49dcea162d55f0623c608683be1af9779e6e64 Author: editor <@51Aspx.com> Date: Tue Jun 25 16:32:17 2024 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..519aba9 --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,42 @@ +三层用户管理系统 + +一、源码描述 +环境:VS2022 Access + +二、功能介绍 +利用一个用户管理系统来讲解Asp.net中三层结构(MVC)的应用,可以实现用户的注册及分级管理 +BusinessLayer.cs和DataLayer.cs分别为逻辑层和数据层 + +该系统采用Asp.net1.1+Access,现已升级至VS2022。 +默认登录账号密码为:admin 51aspx +关于该源码的详细说明请参照代码佩文(英文) + + +三、注意事项 +1、管理员账号与密码:admin 51aspx 。 +2、ctrl+F5运行即可。 + + + + + +作者: beansoftware详 + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/ThreeTierUserManage +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..b80359f --- /dev/null +++ b/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] diff --git a/Backup1/51aspx源码必读.txt b/Backup1/51aspx源码必读.txt new file mode 100644 index 0000000..519aba9 --- /dev/null +++ b/Backup1/51aspx源码必读.txt @@ -0,0 +1,42 @@ +三层用户管理系统 + +一、源码描述 +环境:VS2022 Access + +二、功能介绍 +利用一个用户管理系统来讲解Asp.net中三层结构(MVC)的应用,可以实现用户的注册及分级管理 +BusinessLayer.cs和DataLayer.cs分别为逻辑层和数据层 + +该系统采用Asp.net1.1+Access,现已升级至VS2022。 +默认登录账号密码为:admin 51aspx +关于该源码的详细说明请参照代码佩文(英文) + + +三、注意事项 +1、管理员账号与密码:admin 51aspx 。 +2、ctrl+F5运行即可。 + + + + + +作者: beansoftware详 + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/ThreeTierUserManage +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/Backup1/AssemblyInfo.cs b/Backup1/AssemblyInfo.cs new file mode 100644 index 0000000..b80359f --- /dev/null +++ b/Backup1/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] diff --git a/Backup1/BusinessLayer.cs b/Backup1/BusinessLayer.cs new file mode 100644 index 0000000..694033f --- /dev/null +++ b/Backup1/BusinessLayer.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using Student_Property; +using Student_Data; +//��Դ��������www.51aspx.com(���������������) + +namespace Student_Business +{ + public class clsBusinessStudent + { + public void CreateStudent() + { + + } + } diff --git a/Backup1/DataLayer.cs b/Backup1/DataLayer.cs new file mode 100644 index 0000000..81ec7b8 --- /dev/null +++ b/Backup1/DataLayer.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using Student_Property; + +//��Դ��������www.51aspx.com(���������������) + +namespace Student_Data +{ + public class Create_Connection + { + public Create_Connection() + { + } + diff --git a/Backup1/Global.asax b/Backup1/Global.asax new file mode 100644 index 0000000..3e122c8 --- /dev/null +++ b/Backup1/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="Student.Global" %> diff --git a/Backup1/Global.asax.cs b/Backup1/Global.asax.cs new file mode 100644 index 0000000..115f889 --- /dev/null +++ b/Backup1/Global.asax.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Web; +using System.Web.SessionState; + +namespace Student +{ + /// + /// Summary description for Global. + /// + public class Global : System.Web.HttpApplication + { + /// + /// Required designer variable. diff --git a/Backup1/Global.asax.resx b/Backup1/Global.asax.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup1/Global.asax.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup1/PropertyLayer.cs b/Backup1/PropertyLayer.cs new file mode 100644 index 0000000..6b4afb6 --- /dev/null +++ b/Backup1/PropertyLayer.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; + +namespace Student_Property +{ + + public class User_login //Class for User Table + { + int _id; + string _username; + string _usertype; + string _password; + + public int id + { diff --git a/Backup1/Student.csproj b/Backup1/Student.csproj new file mode 100644 index 0000000..199e6bc --- /dev/null +++ b/Backup1/Student.csproj @@ -0,0 +1,15 @@ + + + + + + + Migration Report +