commit a1c16663f3c2fc5368948979bc81522b8c48d0f0 Author: editor <@51Aspx.com> Date: Thu Jun 20 19:15:44 2024 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..b99baad --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,44 @@ +ASP.NET简单会议事务系统 + +一、源码描述 +环境:VS2022 sql2019 + +二、功能介绍 + +介绍 +1:开发环境:VS2022+SQL Server 2019 |开发语言:C#语言 +2:该系统首发于51aspx,适合初学者学习。 +3:系统功能有:用户管理,管理员管理,添加用户,会议室管理,会议管理,会议查询,我的会议,等等。 +4:系统的后台和前台共享一个页面,但有"权限"限制,有的页面"普通用户"只可以远观,而不可以亵玩矣! +5:用户名和密码为:51aspx,身份:管理员   用户名和密码为:zhang,身份:普通用户 +6:DB_51Aspx下为数据库文件,附加即可 + +三、注意事项 +1、在项目web.config修改数据库连接字符串,附加数据库。 +2、管理员账号与密码:51aspx 51aspx 。 +3、ctrl+F5运行即可。 + + + + + +作者: 一半情弧 + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/SimpleMeeting +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: 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/Control/foot.ascx b/Control/foot.ascx new file mode 100644 index 0000000..1c648db --- /dev/null +++ b/Control/foot.ascx @@ -0,0 +1,15 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeFile="foot.ascx.cs" Inherits="webcontrol_foot" %> + + + + + + + diff --git a/Control/foot.ascx.cs b/Control/foot.ascx.cs new file mode 100644 index 0000000..9703eae --- /dev/null +++ b/Control/foot.ascx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Globalization; +using Microsoft.Win32; +using System.IO; +using System.Diagnostics; +public partial class webcontrol_foot : System.Web.UI.UserControl diff --git a/Control/login.ascx b/Control/login.ascx new file mode 100644 index 0000000..dd07283 --- /dev/null +++ b/Control/login.ascx @@ -0,0 +1,15 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeFile="login.ascx.cs" Inherits="Control_login" %> +
+ 用户来访信息:您的IP地址,操作系统:,浏览器:
+ 版权所有: + + 一半情弧 +
+ + + + + diff --git a/Control/login.ascx.cs b/Control/login.ascx.cs new file mode 100644 index 0000000..cad336d --- /dev/null +++ b/Control/login.ascx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; +public partial class Control_login : System.Web.UI.UserControl +{ + protected void Page_Load(object sender, EventArgs e) + { diff --git a/Control/menu.ascx b/Control/menu.ascx new file mode 100644 index 0000000..0f37433 --- /dev/null +++ b/Control/menu.ascx @@ -0,0 +1,15 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeFile="menu.ascx.cs" Inherits="Control_menu" %> + + + + + + + + + + + + + + diff --git a/Control/menu.ascx.cs b/Control/menu.ascx.cs new file mode 100644 index 0000000..bbe6729 --- /dev/null +++ b/Control/menu.ascx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +public partial class Control_menu : System.Web.UI.UserControl +{ + protected void Page_Load(object sender, EventArgs e) + { diff --git a/Default.aspx b/Default.aspx new file mode 100644 index 0000000..335dc34 --- /dev/null +++ b/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" Title="系统首页-会议事务系统" %> + +<%@ Register Assembly="EeekSoft.Web.PopupWin" Namespace="EeekSoft.Web" TagPrefix="cc1" %> +<%-- 在此处添加内容控件 --%> + +
+
+ 用户名:
+
+
+  
+
+ + + diff --git a/Default.aspx.cs b/Default.aspx.cs new file mode 100644 index 0000000..cc2056a --- /dev/null +++ b/Default.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; +public partial class _Default : System.Web.UI.Page +{ + protected void Page_Load(object sender, EventArgs e) + { diff --git a/MasterPage.master b/MasterPage.master new file mode 100644 index 0000000..a45a621 --- /dev/null +++ b/MasterPage.master @@ -0,0 +1,15 @@ +<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %> +<%@ Register Assembly="Meta.Web" Namespace="Meta.Web.Controls.MasterPages" TagPrefix="mc" %> +<%@ Register Src="Control/foot.ascx" TagName="foot" TagPrefix="uc2" %> +<%@ Register Src="Control/menu.ascx" TagName="menu" TagPrefix="uc1" %> +<%@ Register Assembly="Meta.Web" Namespace="Meta.Web.Controls" TagPrefix="mc" %> + + + + + + 无标题页 + + + + diff --git a/MasterPage.master.cs b/MasterPage.master.cs new file mode 100644 index 0000000..67fd1a1 --- /dev/null +++ b/MasterPage.master.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; + +public partial class MasterPage : System.Web.UI.MasterPage +{ + protected void Page_Load(object sender, EventArgs e) diff --git a/Message.aspx b/Message.aspx new file mode 100644 index 0000000..fb10247 --- /dev/null +++ b/Message.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Message.aspx.cs" Inherits="Message" Title="查看我的会议留言-会议事务系统" %> + +
+
+
+
+ + 管理统计
+
+ + + + +
+
+ 我的会议-查看我的会议留言
+
+ + + diff --git a/Message.aspx.cs b/Message.aspx.cs new file mode 100644 index 0000000..80bf067 --- /dev/null +++ b/Message.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; + +public partial class Message : System.Web.UI.Page +{ + SqlConnection cn; diff --git a/StyleSheet.css b/StyleSheet.css new file mode 100644 index 0000000..9dcdb62 --- /dev/null +++ b/StyleSheet.css @@ -0,0 +1,15 @@ +BODY { + font-size: 12px; + color: #000000; + text-decoration: none; + margin: 0px; +} +a:link { +} +.style1 {font-size: 24px} +a { + font-size: 12px; + color: #333333; + text-decoration: none; +} +a:hover { diff --git a/UpgradeLog.htm b/UpgradeLog.htm new file mode 100644 index 0000000..38421f0 --- /dev/null +++ b/UpgradeLog.htm @@ -0,0 +1,15 @@ + + + + Migration Report +